diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2020-02-10 12:15:57 -0500 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2020-03-20 15:57:58 +0100 |
commit | 220daf5664d3ce411b0498d2fbe6d864e0785d6e (patch) | |
tree | 83261118ac4a26af7cfa26009220e8da19b4577a | |
parent | e66a3bc5588650228cb59ced3671d05dcc19db7e (diff) | |
download | efl-220daf5664d3ce411b0498d2fbe6d864e0785d6e.tar.gz |
efl/player: add doc note about default values for new (1.24) properties
we're going to be overriding the default in at least some classes, so make
sure we make it explicit that the behavior is documented
Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es>
Differential Revision: https://phab.enlightenment.org/D11310
-rw-r--r-- | src/lib/efl/interfaces/efl_player.eo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/efl/interfaces/efl_player.eo b/src/lib/efl/interfaces/efl_player.eo index 82411fa7f4..9ec9b2b1ad 100644 --- a/src/lib/efl/interfaces/efl_player.eo +++ b/src/lib/efl/interfaces/efl_player.eo @@ -112,7 +112,7 @@ interface Efl.Player get { } values { - autoplay: bool; [[Auto play mode, Default is $false.]] + autoplay: bool; [[Auto play mode, Default is $false unless specified by the implementing class.]] } } @property playback_loop { @@ -129,7 +129,7 @@ interface Efl.Player get { } values { - looping: bool; [[Loop mode, Default is $false.]] + looping: bool; [[Loop mode, Default is $false unless specified by the implementing class.]] } } } |