[gnome-shell/wip/carlosg/osk-updates: 34/43] keyboard: Fill suggestion on button-press-event
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/carlosg/osk-updates: 34/43] keyboard: Fill suggestion on button-press-event
- Date: Wed, 15 Jun 2022 16:12:46 +0000 (UTC)
commit 319a4e251bc4d1b1a104d2c139bb234638d65550
Author: Carlos Garnacho <carlosg gnome org>
Date: Fri Apr 22 16:19:14 2022 +0200
keyboard: Fill suggestion on button-press-event
Like OSK key buttons, we must avoid the default grabbing behavior
of StButton here. Hook to button-press-event to commit the selected
words, so we get a chance to prevent focus changes on the current
key focus.
js/ui/keyboard.js | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js
index f5618cadcb..68a7faaf0a 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -173,7 +173,10 @@ class Suggestions extends St.BoxLayout {
add(word, callback) {
let button = new St.Button({ label: word });
- button.connect('clicked', callback);
+ button.connect('button-press-event', () => {
+ callback();
+ return Clutter.EVENT_STOP;
+ });
this.add_child(button);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]