screenshot: Only handle mode-switch shortcut when supported
We currently handle the 'v' key to switch between recording- and screenshot mode regardless of whether screen recordings are supported. This is clearly wrong, don't do that. Closes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/6990 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2944>
This commit is contained in:
parent
521525948e
commit
671df28a50
@ -2040,7 +2040,8 @@ export const ScreenshotUI = GObject.registerClass({
|
||||
return Clutter.EVENT_STOP;
|
||||
}
|
||||
|
||||
if (symbol === Clutter.KEY_v || symbol === Clutter.KEY_V) {
|
||||
if (this._castButton.reactive &&
|
||||
(symbol === Clutter.KEY_v || symbol === Clutter.KEY_V)) {
|
||||
this._castButton.checked = !this._castButton.checked;
|
||||
return Clutter.EVENT_STOP;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user