summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Zaoui <daniel.zaoui@samsung.com>2015-09-01 11:16:58 +0300
committerDaniel Zaoui <daniel.zaoui@samsung.com>2015-09-01 11:16:58 +0300
commita5c3589ac324c945f62d64f6c7064b0b253a93d0 (patch)
tree8ba842b6e7315604d5039cd8f04b6edfadf3a984
parentb6a1685adfe1dfb4881f6c322cb194153087b095 (diff)
downloadelementary-a5c3589ac324c945f62d64f6c7064b0b253a93d0.tar.gz
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
-rw-r--r--src/lib/elc_fileselector_entry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elc_fileselector_entry.c b/src/lib/elc_fileselector_entry.c
index a94b44e1b..8b5e889ff 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);