stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=186ad100c75573395e1991e4ffbc521c72962041
commit 186ad100c75573395e1991e4ffbc521c72962041 Author: Stefan Schmidt <[email protected]> Date: Fri Aug 12 17:24:27 2016 +0200 elm: entry: fix since tag to be used for getter and setter Both have been added in 1.18 not only set() --- src/lib/elementary/elm_entry.eo | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/lib/elementary/elm_entry.eo b/src/lib/elementary/elm_entry.eo index 0abb2fa..8f83210 100644 --- a/src/lib/elementary/elm_entry.eo +++ b/src/lib/elementary/elm_entry.eo @@ -653,14 +653,13 @@ class Elm.Entry (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable, } } @property select_allow { - set { - [[Allow selection in the entry. + [[Allow selection in the entry. - @since 1.18 - ]] + @since 1.18 + ]] + set { } get { - [[Returns whether selection in the entry is allowed.]] } values { allow: bool; [[If $allow is true, the text selection is allowed.]] --
