24 lines
1.0 KiB
Diff
24 lines
1.0 KiB
Diff
|
Subject: systray: Use APPLICATION_STATUS for appindicator
|
||
|
From: Cole Robinson crobinso@redhat.com Wed Oct 18 18:50:42 2017 -0400
|
||
|
Date: Wed Oct 18 19:14:17 2017 -0400:
|
||
|
Git: 9617d1267dfb283b6a13762f7c03d391b644db84
|
||
|
|
||
|
Not OTHER, as the reporter points out this shouldn't be used, and
|
||
|
causes issues on KDE
|
||
|
|
||
|
https://bugzilla.redhat.com/show_bug.cgi?id=1501173
|
||
|
|
||
|
diff --git a/virtManager/systray.py b/virtManager/systray.py
|
||
|
index bbe5119c..ff550738 100644
|
||
|
--- a/virtManager/systray.py
|
||
|
+++ b/virtManager/systray.py
|
||
|
@@ -139,7 +139,7 @@ class vmmSystray(vmmGObject):
|
||
|
# pylint: disable=maybe-no-member
|
||
|
self.systray_icon = AppIndicator3.Indicator.new("virt-manager",
|
||
|
"virt-manager",
|
||
|
- AppIndicator3.IndicatorCategory.OTHER)
|
||
|
+ AppIndicator3.IndicatorCategory.APPLICATION_STATUS)
|
||
|
self.systray_icon.set_status(AppIndicator3.IndicatorStatus.ACTIVE)
|
||
|
self.systray_icon.set_menu(self.systray_menu)
|
||
|
|