From eff0322dc188d36913048e8adc66329952437fcd Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Tue, 7 Jul 2020 21:30:11 -0400 Subject: [PATCH] Fix overview on 3.36.4 --- panelManager.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/panelManager.js b/panelManager.js index 586e097..a74e534 100755 --- a/panelManager.js +++ b/panelManager.js @@ -558,8 +558,15 @@ var dtpPanelManager = Utils.defineClass({ this._workspacesViews.forEach(wv => Main.layoutManager.overviewGroup.add_actor(wv.actor)); - this._updateWorkspacesFullGeometry(); - this._updateWorkspacesActualGeometry(); + if (Config.PACKAGE_VERSION > '3.36.3') { + if (this._fullGeometry) + this._syncWorkspacesFullGeometry(); + if (this._actualGeometry) + this._syncWorkspacesActualGeometry(); + } else { + this._updateWorkspacesFullGeometry(); + this._updateWorkspacesActualGeometry(); + } }, _newGetShowAppsButton: function() {