bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=220daf5664d3ce411b0498d2fbe6d864e0785d6e
commit 220daf5664d3ce411b0498d2fbe6d864e0785d6e Author: Mike Blumenkrantz <[email protected]> Date: Mon Feb 10 12:15:57 2020 -0500 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 <[email protected]> Differential Revision: https://phab.enlightenment.org/D11310 --- src/lib/efl/interfaces/efl_player.eo | 4 ++-- 1 file 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.]] } } } --
