stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=343cec01e9c6bb1c4e58ccb1aee66126b40f1545
commit 343cec01e9c6bb1c4e58ccb1aee66126b40f1545 Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Tue Dec 20 09:12:27 2016 +0100 docs: elm: fix stack_base property doc to cover getter function as well Documenting the property itself will make sure getter as well as setter are documented. --- src/lib/elementary/efl_ui_win.eo | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/src/lib/elementary/efl_ui_win.eo b/src/lib/elementary/efl_ui_win.eo index 886b14d..756f175 100644 --- a/src/lib/elementary/efl_ui_win.eo +++ b/src/lib/elementary/efl_ui_win.eo @@ -773,23 +773,24 @@ class Efl.Ui.Win (Elm.Widget, Efl.Canvas, Elm.Interface.Atspi.Window, } } @property stack_base { - set { - [[Set the stack base state of this window + [[The stack base state of this window - This is a boolean flag that determines if this window will - become the base of a stack at all. You must enable this - on a base (bottom of a window stack for things to work - correctly. + This is a boolean flag that determines if this window will + become the base of a stack at all. You must enable this + on a base (bottom of a window stack for things to work + correctly. - This state should be set before a window is shown for the - first time and never changed again after that. + This state should be set before a window is shown for the + first time and never changed again after that. - @since 1.19]] - } + @since 1.19 + ]] + + set {} get {} values { - base: bool; [[True if this is a stack base window, false - false otherwise.]] + base: bool; [[$true if this is a stack base window, $false + otherwise.]] } } stack_pop_to_id { --