From 1d728186db26a80314557c9fcf37bb6e2579364b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 20 Mar 2013 15:44:03 +0100 Subject: [PATCH] recorder: Enable the keybinding for all modes There's not really a good reason to restrict the screen recorder to normal mode and overview, so allow it for all keybinding modes. https://bugzilla.gnome.org/show_bug.cgi?id=696200 --- js/ui/components/recorder.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/ui/components/recorder.js b/js/ui/components/recorder.js index 2517f7902..863bd8042 100644 --- a/js/ui/components/recorder.js +++ b/js/ui/components/recorder.js @@ -20,8 +20,7 @@ const Recorder = new Lang.Class({ Main.wm.addKeybinding('toggle-recording', this._bindingSettings, Meta.KeyBindingFlags.NONE, - Shell.KeyBindingMode.NORMAL | - Shell.KeyBindingMode.OVERVIEW, + Shell.KeyBindingMode.ALL, Lang.bind(this, this._toggleRecorder)); },