From c6cf180eb3518503779ee586651f911f757ff65e Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Sat, 27 Aug 2022 08:38:11 -0400 Subject: [PATCH] Fix grouped apps split Fixes #1737 --- taskbar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskbar.js b/taskbar.js index f791e66..3f1a71c 100644 --- a/taskbar.js +++ b/taskbar.js @@ -403,7 +403,7 @@ var Taskbar = class { this.showFavorites = Me.settings.get_boolean('show-favorites') && (this.dtpPanel.isPrimary || Me.settings.get_boolean('show-favorites-all-monitors')) this.showRunningApps = Me.settings.get_boolean('show-running-apps') - this.allowSplitApps = this.usingLaunchers || !this.showFavorites + this.allowSplitApps = this.usingLaunchers || (!this.isGroupApps && !this.showFavorites) } setAttributes()