You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
856 B
28 lines
856 B
8 months ago
|
From ce48dc2f4fba6a7084540df256cb5b3eb0da43da Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
|
||
|
Date: Wed, 2 Jun 2021 17:32:21 +0200
|
||
|
Subject: [PATCH] top-icons: Don't use wm_class as role
|
||
|
|
||
|
This prevents adding icons for multiple instances of the same app,
|
||
|
which may be desirable in some circumstances.
|
||
|
---
|
||
|
extensions/top-icons/extension.js | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/extensions/top-icons/extension.js b/extensions/top-icons/extension.js
|
||
|
index 79e2f423..3dfba469 100644
|
||
|
--- a/extensions/top-icons/extension.js
|
||
|
+++ b/extensions/top-icons/extension.js
|
||
|
@@ -63,7 +63,7 @@ class SysTray {
|
||
|
button.destroy();
|
||
|
});
|
||
|
|
||
|
- let role = wmClass || `${icon}`;
|
||
|
+ const role = `${icon}`;
|
||
|
Main.panel.addToStatusArea(role, button);
|
||
|
}
|
||
|
|
||
|
--
|
||
|
2.31.1
|
||
|
|