summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2019-03-20 15:01:23 +0100
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2019-03-20 16:59:39 +0100
commitdecfca4f238f8e145c1540ced766c2441c9250cd (patch)
treebae727328396ddf033e80f8567114ffe00f3ccb4
parent7069b0efc066cd9f0f0a3eb744240566eedb232e (diff)
downloadefl-decfca4f238f8e145c1540ced766c2441c9250cd.tar.gz
efl_ui_selection: give this event a better name
this event does not get emitted when selection per se changes, it gets emitted when the selection in the window manager changes. we should prefix this even with that. ref T7476 Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es> Differential Revision: https://phab.enlightenment.org/D8424
-rw-r--r--src/lib/elementary/efl_ui_selection.eo2
-rw-r--r--src/lib/elementary/efl_ui_selection_manager.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/elementary/efl_ui_selection.eo b/src/lib/elementary/efl_ui_selection.eo
index 5dfedbfa9a..20e42261d0 100644
--- a/src/lib/elementary/efl_ui_selection.eo
+++ b/src/lib/elementary/efl_ui_selection.eo
@@ -40,6 +40,6 @@ mixin @beta Efl.Ui.Selection {
}
}
events {
- selection,changed: Efl.Ui.Selection_Changed; [[Called when display server's selection has changed]]
+ wm_selection,changed: Efl.Ui.Selection_Changed; [[Called when display server's selection has changed]]
}
}
diff --git a/src/lib/elementary/efl_ui_selection_manager.c b/src/lib/elementary/efl_ui_selection_manager.c
index 2c401df14b..ef9d221d0d 100644
--- a/src/lib/elementary/efl_ui_selection_manager.c
+++ b/src/lib/elementary/efl_ui_selection_manager.c
@@ -880,7 +880,7 @@ _x11_fixes_selection_notify(void *data, int t EINA_UNUSED, void *event)
_e->exists = e.exist;
ecore_event_add(ELM_CNP_EVENT_SELECTION_CHANGED, _e, NULL, NULL);
- efl_event_callback_call(sel->owner, EFL_UI_SELECTION_EVENT_SELECTION_CHANGED, &e);
+ efl_event_callback_call(sel->owner, EFL_UI_SELECTION_EVENT_WM_SELECTION_CHANGED, &e);
return ECORE_CALLBACK_RENEW;
}
@@ -2650,7 +2650,7 @@ _wl_selection_changed(void *data, int type EINA_UNUSED, void *event)
_e->exists = e.exist;
ecore_event_add(ELM_CNP_EVENT_SELECTION_CHANGED, _e, _wl_selection_changed_free, ev->display);
- efl_event_callback_call(sel->request_obj, EFL_UI_SELECTION_EVENT_SELECTION_CHANGED, &e);
+ efl_event_callback_call(sel->request_obj, EFL_UI_SELECTION_EVENT_WM_SELECTION_CHANGED, &e);
return ECORE_CALLBACK_RENEW;
}