Compare commits

...

1 Commits

Author SHA1 Message Date
Carlos Garnacho
cdd513aef4 shellEntry: Look up keymap from the ClutterSeat
The get_keymap() method no longer exists on the ClutterBackend, but was
moved to the ClutterSeat.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/969
2020-01-31 11:18:54 +01:00

View File

@ -164,7 +164,8 @@ class CapsLockWarning extends St.Label {
this.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
this.clutter_text.line_wrap = true;
this._keymap = Clutter.get_default_backend().get_keymap();
let seat = Clutter.get_default_backend().get_default_seat();
this._keymap = seat.get_keymap();
this.connect('notify::mapped', () => {
if (this.is_mapped()) {