From fa2f7ac05b8ad74faecd69e45432944e6b6b9a1a Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Wed, 28 Aug 2019 19:00:08 -0400 Subject: [PATCH] Separate grouped/ungrouped appicon isolated workspace switch --- appIcons.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/appIcons.js b/appIcons.js index cf2175e..594198a 100644 --- a/appIcons.js +++ b/appIcons.js @@ -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) {