diff options
author | moon87.park <moon87.park@samsung.com> | 2016-12-11 20:52:50 -0800 |
---|---|---|
committer | Gerrit Code Review <gerrit@review.vlan103.tizen.org> | 2016-12-11 20:52:50 -0800 |
commit | bf31e922a856ce349223f60ea9e781150bc4f1fe (patch) | |
tree | 6512f3d285f6138e2463327c41a3ac6f82f60040 | |
parent | 7609f6d639c6e7a3c360ac6c5d8a933ea6f06beb (diff) | |
parent | 2d39dccd0da950b62363dd080e39fcd71f3d15e3 (diff) | |
download | w3-home-bf31e922a856ce349223f60ea9e781150bc4f1fe.tar.gz w3-home-bf31e922a856ce349223f60ea9e781150bc4f1fe.tar.bz2 w3-home-bf31e922a856ce349223f60ea9e781150bc4f1fe.zip |
Merge "[W-home] Fixed active callback issue when notification count is 1" into tizen
-rw-r--r-- | home/src/notification/noti_panel_page_view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/src/notification/noti_panel_page_view.c b/home/src/notification/noti_panel_page_view.c index 9f2b8a9..87ca892 100644 --- a/home/src/notification/noti_panel_page_view.c +++ b/home/src/notification/noti_panel_page_view.c @@ -173,10 +173,10 @@ void noti_panel_page_view_set_coverview(Evas_Object *page_view, notification_h n elm_atspi_accessible_relationship_append(access_obj, ELM_ATSPI_RELATION_FLOWS_TO, more_access_obj); elm_atspi_accessible_relationship_append(more_access_obj, ELM_ATSPI_RELATION_FLOWS_FROM, access_obj); elm_access_action_cb_set(more_access_obj, ELM_ACCESS_ACTION_ACTIVATE, _more_clicked_cb, cover_view); - elm_access_action_cb_set(access_obj, ELM_ACCESS_ACTION_ACTIVATE, _coverview_clicked_cb, cover_view); } else elm_object_signal_emit(cover_view, "hide", "more"); + elm_access_action_cb_set(access_obj, ELM_ACCESS_ACTION_ACTIVATE, _coverview_clicked_cb, cover_view); elm_atspi_component_highlight_grab(access_obj); noti_panel_cover_view_set_content(cover_view, notification); |