stefan pushed a commit to branch efl-1.18. http://git.enlightenment.org/core/efl.git/commit/?id=7a201ff481933344acaba0b8ca484a8ee5b42f5f
commit 7a201ff481933344acaba0b8ca484a8ee5b42f5f 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 5c4dedc..a30d2e4 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.]] --
