[gnome-shell/wip/carlosg/suggestions-on-button-press] keyboard: Fill suggestion on button-press-event




commit 73b695f8455cdb6e76d8647d0b7b77f36b99aea3
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.
    
    Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2368>

 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 e13652bdfe..810639c783 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -220,7 +220,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]