From e7de02127771a023c4e578e503ea63a95aed140f Mon Sep 17 00:00:00 2001 From: Daniel Sheeler Date: Sat, 30 Nov 2024 12:08:41 -0600 Subject: [PATCH] Ensure window is not highlighted while swipe is in progress. --- src/preview.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/preview.js b/src/preview.js index f4ffaf6..166c2c2 100644 --- a/src/preview.js +++ b/src/preview.js @@ -239,10 +239,8 @@ export const Preview = GObject.registerClass({ this._entered = true; if (this.switcher._settings.raise_mouse_over) { this.make_top_layer(this.switcher.previewActor); - this.switcher._raiseIcons(); } - if (this.switcher._settings.highlight_mouse_over) { - let window_actor = this.metaWin.get_compositor_private(); + if (this.switcher._settings.highlight_mouse_over && !this.switcher.gestureInProgress) { if (this._highlight === null) { this._highlight = new St.Bin({ opacity: 0,