diff --git a/configure.ac b/configure.ac index 65ae03bb6..c8600f052 100644 --- a/configure.ac +++ b/configure.ac @@ -62,7 +62,7 @@ fi AM_CONDITIONAL(BUILD_RECORDER, $build_recorder) -CLUTTER_MIN_VERSION=1.11.11 +CLUTTER_MIN_VERSION=1.13.4 GOBJECT_INTROSPECTION_MIN_VERSION=0.10.1 GJS_MIN_VERSION=1.35.4 MUTTER_MIN_VERSION=3.7.4 diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index 517e7a979..246bbf653 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1630,10 +1630,7 @@ const MessageTray = new Lang.Class({ }, _onNotificationKeyRelease: function(actor, event) { - let ignoredModifiers = global.display.get_ignored_modifier_mask(); - let modifierState = event.get_state() & ~ignoredModifiers; - - if (event.get_key_symbol() == Clutter.KEY_Escape && modifierState == 0) { + if (event.get_key_symbol() == Clutter.KEY_Escape && event.get_state() == 0) { this._closeNotification(); return true; }