stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=b5919ae9edaff1941f318b3b0572c6ca758655db
commit b5919ae9edaff1941f318b3b0572c6ca758655db Author: Stefan Schmidt <[email protected]> Date: Thu Nov 17 13:50:12 2016 +0100 elm_fileselector: fix property value name when showing hidden files The vlaue name multi does not make any sense here and looks like a copy and paste oversight from the multiselection property. --- src/lib/elementary/elm_interface_fileselector.eo | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/elementary/elm_interface_fileselector.eo b/src/lib/elementary/elm_interface_fileselector.eo index b50acea..1886f02 100644 --- a/src/lib/elementary/elm_interface_fileselector.eo +++ b/src/lib/elementary/elm_interface_fileselector.eo @@ -63,8 +63,7 @@ interface Elm.Interface.Fileselector () [[Get if hiden files/directories in the file selector are visible or not.]] } values { - multi: bool; [[$true if hidden files are visible, $false otherwise]] - /* FIXME needs a better value name */ + hidden: bool; [[$true if hidden files are visible, $false otherwise]] } } @property sort_method { --
