From 56478f21e6641478f7509527fd3ed40169b2ec67 Mon Sep 17 00:00:00 2001 From: Sebastian Keller Date: Wed, 1 Mar 2023 21:48:45 +0100 Subject: [PATCH] overview: Hide when failing to take grab at end of startup animation Otherwise keyboard input would be going to whatever window was preventing us from taking the grab while it is obscured by the overview. Part-of: --- js/ui/overview.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/overview.js b/js/ui/overview.js index 22bd4c4f5..c2c2e5326 100644 --- a/js/ui/overview.js +++ b/js/ui/overview.js @@ -691,6 +691,7 @@ var Overview = class extends Signals.EventEmitter { if (!this._syncGrab()) { callback(); + this.hide(); return; }