diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/keybindings.c | 9 | ||||
| -rw-r--r-- | src/core/prefs.c | 4 |
2 files changed, 9 insertions, 4 deletions
diff --git a/src/core/keybindings.c b/src/core/keybindings.c index c74577f9..b1b1780a 100644 --- a/src/core/keybindings.c +++ b/src/core/keybindings.c @@ -2510,6 +2510,15 @@ handle_run_command (MetaDisplay *display, return; } + /* Release keyboard grabs immediately for screenshot commands that may need + * input grabbing. This prevents race conditions with applications like + * mate-screenshot that need to grab input for area selection. + */ + if (which >= SCREENSHOT_COMMAND_IDX && which <= WIN_SCREENSHOT_COMMAND_IDX) + { + ungrab_keyboard (display, event->xkey.time); + } + err = NULL; if (!meta_spawn_command_line_async_on_screen (command, screen, &err)) { diff --git a/src/core/prefs.c b/src/core/prefs.c index 23ed5d45..5299cf81 100644 --- a/src/core/prefs.c +++ b/src/core/prefs.c @@ -36,10 +36,6 @@ #define MAX_REASONABLE_WORKSPACES 36 -#define MAX_COMMANDS (32 + NUM_EXTRA_COMMANDS) -#define NUM_EXTRA_COMMANDS 2 -#define SCREENSHOT_COMMAND_IDX (MAX_COMMANDS - 2) -#define WIN_SCREENSHOT_COMMAND_IDX (MAX_COMMANDS - 1) /* If you add a key, it needs updating in init() and in the GSettings * notify listener and of course in the .gschema file. |
