From 1a1215527ffa739d4705097df95fec16b70ba434 Mon Sep 17 00:00:00 2001 From: Alban Browaeys Date: Sat, 17 Nov 2012 04:49:13 +0100 Subject: [PATCH] messageTray: restore toggle tray in normal mode (non overview) https://bugzilla.gnome.org/show_bug.cgi?id=688507 --- js/ui/messageTray.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index d69d31b9b..161749027 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1521,12 +1521,14 @@ const MessageTray = new Lang.Class({ Main.wm.addKeybinding('toggle-message-tray', new Gio.Settings({ schema: SHELL_KEYBINDINGS_SCHEMA }), Meta.KeyBindingFlags.NONE, + Main.KeybindingMode.NORMAL | Main.KeybindingMode.MESSAGE_TRAY | Main.KeybindingMode.OVERVIEW, Lang.bind(this, this.toggleAndNavigate)); Main.wm.addKeybinding('focus-active-notification', new Gio.Settings({ schema: SHELL_KEYBINDINGS_SCHEMA }), Meta.KeyBindingFlags.NONE, + Main.KeybindingMode.NORMAL | Main.KeybindingMode.MESSAGE_TRAY | Main.KeybindingMode.OVERVIEW, Lang.bind(this, this._expandActiveNotification));