Separate grouped/ungrouped appicon isolated workspace switch

This commit is contained in:
Charles Gagnon
2019-08-28 19:00:08 -04:00
parent 6d4ed36084
commit fa2f7ac05b

View File

@@ -570,7 +570,14 @@ var taskbarAppIcon = Utils.defineClass({
},
_onSwitchWorkspace: function(windowTracker) {
this._displayProperIndicator();
if (this._isGroupApps) {
Mainloop.timeout_add(0, Lang.bind(this, function () {
this._displayProperIndicator();
return GLib.SOURCE_REMOVE;
}));
} else {
this._displayProperIndicator();
}
},
_displayProperIndicator: function (force) {