[mutter/wip/carlosg/im-update-preedit-with-mode: 18/21] clutter: Handle touch down and button press events in ClutterInputFocus
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter/wip/carlosg/im-update-preedit-with-mode: 18/21] clutter: Handle touch down and button press events in ClutterInputFocus
- Date: Fri, 30 Jul 2021 15:18:20 +0000 (UTC)
commit f4356ad6c5694827085c02eba51bc9972c0fc443
Author: Carlos Garnacho <carlosg gnome org>
Date: Tue Jul 27 16:45:14 2021 +0200
clutter: Handle touch down and button press events in ClutterInputFocus
In line with GTK, the input method context should be reset when clicks
are handled by the ClutterInputFocus user. The reset action can then
either clear or commit the preedit text, as configured by the IM module.
clutter/clutter/clutter-input-focus.c | 7 +++++++
1 file changed, 7 insertions(+)
---
diff --git a/clutter/clutter/clutter-input-focus.c b/clutter/clutter/clutter-input-focus.c
index 2aea51e24d..005e441e9f 100644
--- a/clutter/clutter/clutter-input-focus.c
+++ b/clutter/clutter/clutter-input-focus.c
@@ -179,6 +179,13 @@ clutter_input_focus_filter_event (ClutterInputFocus *focus,
event->im.offset);
return TRUE;
}
+ else if (event->type == CLUTTER_BUTTON_PRESS &&
+ event->button.button == CLUTTER_BUTTON_PRIMARY)
+ {
+ clutter_input_focus_reset (focus);
+ /* Button press events are not consumed by IMs */
+ return FALSE;
+ }
return FALSE;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]