[gnome-shell/wip/carlosg/cleanup-gtk-usage: 8/19] keyboard: Drop GDK API usage



commit e280590e7be1d4779d7958804b023e089a5081e1
Author: Carlos Garnacho <carlosg gnome org>
Date:   Mon Nov 26 13:39:57 2018 +0100

    keyboard: Drop GDK API usage
    
    Use the misnamed but equivalent Clutter function.

 js/ui/keyboard.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
---
diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js
index 8bd31c8e8..d95f0aefb 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -2,7 +2,6 @@
 
 const Atspi = imports.gi.Atspi;
 const Clutter = imports.gi.Clutter;
-const Gdk = imports.gi.Gdk;
 const Gio = imports.gi.Gio;
 const GLib = imports.gi.GLib;
 const GObject = imports.gi.GObject;
@@ -280,7 +279,7 @@ var Key = class Key {
 
     _getKeyval(key) {
         let unicode = String.charCodeAt(key, 0);
-        return Gdk.unicode_to_keyval(unicode);
+        return Clutter.unicode_to_keysym(unicode);
     }
 
     _press(key) {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]