From 478b8ecb351bc9ea105431aec9b1be73ea19beba Mon Sep 17 00:00:00 2001 From: rpm-build Date: Dec 10 2020 12:16:20 +0000 Subject: 0001-workspacesView-Work-around-spurious-allocation-chang.patch patch_name: 0001-workspacesView-Work-around-spurious-allocation-chang.patch present_in_specfile: true location_in_specfile: 21 --- diff --git a/js/ui/workspacesView.js b/js/ui/workspacesView.js index 069937d..e302296 100644 --- a/js/ui/workspacesView.js +++ b/js/ui/workspacesView.js @@ -666,10 +666,15 @@ var WorkspacesDisplay = class { this._scrollValueChanged.bind(this)); } + // HACK: Avoid spurious allocation changes while updating views + view.actor.hide(); + this._workspacesViews.push(view); Main.layoutManager.overviewGroup.add_actor(view.actor); } + this._workspacesViews.forEach(v => v.actor.show()); + this._updateWorkspacesFullGeometry(); this._updateWorkspacesActualGeometry(); }