[virt-tools-list] [virt-manager] [PATCH ] vsockdetails: Show CID for active VM if the attribute auto is set to yes
Lin Ma
lma at suse.com
Mon Jan 21 08:30:54 UTC 2019
Signed-off-by: Lin Ma <lma at suse.com>
---
virtManager/vsockdetails.py | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/virtManager/vsockdetails.py b/virtManager/vsockdetails.py
index 7e4e8134..a4920012 100644
--- a/virtManager/vsockdetails.py
+++ b/virtManager/vsockdetails.py
@@ -56,6 +56,11 @@ class vmmVsockDetails(vmmGObjectUI):
else:
cid = self.MIN_GUEST_CID
+ label = self.widget("vsock-auto").get_label().split(" (")[0]
+ if is_auto and self.vm.is_active():
+ label += " (%s %s)" % (_("CID ="), cid)
+ self.widget("vsock-auto").set_label(label)
+
self.widget("vsock-auto").set_active(is_auto)
self.widget("vsock-cid").set_value(cid)
self.widget("vsock-cid").set_visible(not is_auto)
--
2.19.0
More information about the virt-tools-list
mailing list