From e073670c4db581a4468d9b35a84740553a1f95e0 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Mon, 20 Aug 2012 20:08:40 -0400 Subject: [PATCH] workspace: Don't recalculate window positions when leaving the overview https://bugzilla.gnome.org/show_bug.cgi?id=682286 --- js/ui/workspace.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/ui/workspace.js b/js/ui/workspace.js index 3005c8dd7..17e19cb0e 100644 --- a/js/ui/workspace.js +++ b/js/ui/workspace.js @@ -1073,6 +1073,9 @@ const Workspace = new Lang.Class({ * ANIMATE - Indicates that we need animate changing position. */ positionWindows: function(flags) { + if (this.leavingOverview) + return; + this._positionWindowsFlags |= flags; if (this._positionWindowsId > 0)