mirror of
https://src.fedoraproject.org/rpms/virt-manager.git
synced 2025-07-15 16:53:32 +00:00
virt-manager tries to create vmport device on non-x86 backends (bz #1259998) Details/Virtual networks: Allow manually specifying a bridge for qemu:///session (bz #1212443) RFE Improve Solaris 10 x86-64 support in virt-manager (bz #1262093) No system tray icon in Cinnamon session (bz #1257949)
23 lines
985 B
Diff
23 lines
985 B
Diff
From: Cole Robinson <crobinso@redhat.com>
|
|
Date: Wed, 18 Nov 2015 18:48:30 -0500
|
|
Subject: [PATCH virt-manager] systray: Fix appindicator icon name (bz 1257949)
|
|
|
|
(cherry picked from commit cbef4ad84b9c241d7fad23ac7ef676e1b06ae29d)
|
|
---
|
|
virtManager/systray.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/virtManager/systray.py b/virtManager/systray.py
|
|
index 16e8fde..dd6ca71 100644
|
|
--- a/virtManager/systray.py
|
|
+++ b/virtManager/systray.py
|
|
@@ -132,7 +132,7 @@ class vmmSystray(vmmGObject):
|
|
if self.systray_indicator:
|
|
# pylint: disable=maybe-no-member
|
|
self.systray_icon = AppIndicator3.Indicator.new("virt-manager",
|
|
- "virt-manager-icon",
|
|
+ "virt-manager",
|
|
AppIndicator3.IndicatorCategory.OTHER)
|
|
self.systray_icon.set_status(AppIndicator3.IndicatorStatus.ACTIVE)
|
|
self.systray_icon.set_menu(self.systray_menu)
|