jackdanielz pushed a commit to branch elementary-1.15.

http://git.enlightenment.org/core/elementary.git/commit/?id=071c91dde45d766b1ab22632bd64cc010fd4c5bc

commit 071c91dde45d766b1ab22632bd64cc010fd4c5bc
Author: Daniel Zaoui <daniel.za...@samsung.com>
Date:   Tue Sep 1 11:16:58 2015 +0300

    FileSelector: fix behaviour when the file is chosen
    
    The wrong event was sent on the Ok file selector button when the file is
    chosen, leading to not update the upper layer.
    
    @fix
---
 src/lib/elc_fileselector_entry.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elc_fileselector_entry.c b/src/lib/elc_fileselector_entry.c
index a94b44e..8b5e889 100644
--- a/src/lib/elc_fileselector_entry.c
+++ b/src/lib/elc_fileselector_entry.c
@@ -297,7 +297,7 @@ _elm_fileselector_entry_evas_object_smart_add(Eo *obj, 
Elm_Fileselector_Entry_Da
   eo_do(priv->button, eo_event_callback_add(event, _##name##_fwd, obj))
    SIG_FWD(CLICKED, EVAS_CLICKABLE_INTERFACE_EVENT_CLICKED);
    SIG_FWD(UNPRESSED, EVAS_CLICKABLE_INTERFACE_EVENT_UNPRESSED);
-   SIG_FWD(FILE_CHOSEN, ELM_FILESELECTOR_ENTRY_EVENT_FILE_CHOSEN);
+   SIG_FWD(FILE_CHOSEN, ELM_FILESELECTOR_BUTTON_EVENT_FILE_CHOSEN);
 #undef SIG_FWD
 
    priv->entry = elm_entry_add(obj);

-- 


Reply via email to