ui: Reset workspace thumbnail porthole on monitor changes

The porthole will not be destroyed when the scale factor changed.
That makes workspace thumbnail porthole still wrong size in the first
seeing after the scale factor changed.

https://bugzilla.gnome.org/show_bug.cgi?id=765011
This commit is contained in:
Shih-Yuan Lee (FourDollars) 2017-06-09 18:26:11 +08:00 committed by Jonas Ådahl
parent 4c2fd513f4
commit 4427197343

View File

@ -676,6 +676,12 @@ const ThumbnailsBox = new Lang.Class({
this._settings = new Gio.Settings({ schema_id: OVERRIDE_SCHEMA });
this._settings.connect('changed::dynamic-workspaces',
Lang.bind(this, this._updateSwitcherVisibility));
Main.layoutManager.connect('monitors-changed', Lang.bind(this, function() {
this._destroyThumbnails();
if (Main.overview.visible)
this._createThumbnails();
}));
},
_updateSwitcherVisibility: function() {