[gnome-shell/wip/carlosg/cleanup-gtk-usage: 1/12] keyboard: Drop GDK API usage
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/carlosg/cleanup-gtk-usage: 1/12] keyboard: Drop GDK API usage
- Date: Wed, 28 Nov 2018 16:50:28 +0000 (UTC)
commit 62afe8eff73ac2354d8fd20288b6b442815d89d1
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 106c30210..cbf150071 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 Lang = imports.lang;
@@ -294,7 +293,7 @@ var Key = new Lang.Class({
_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]