From 436d4c544cbbdab5b6de252383635aef8d71747e Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Thu, 23 Feb 2017 11:22:26 +0100 Subject: [PATCH] details: refresh Information page on inspection data change Refresh the 'Information' page when there are new inspection data available, so they can be seen even without switching to a different page and back. This could be seen when starting virt-manager, and opening quickly the 'Information' page of an uninspected guest. --- virtManager/details.py | 1 + 1 file changed, 1 insertion(+) diff --git a/virtManager/details.py b/virtManager/details.py index 0503a4448..ca097cc42 100644 --- a/virtManager/details.py +++ b/virtManager/details.py @@ -580,6 +580,7 @@ class vmmDetails(vmmGObjectUI): # Deliberately keep all this after signal connection self.vm.connect("state-changed", self.refresh_vm_state) self.vm.connect("resources-sampled", self.refresh_resources) + self.vm.connect("inspection-changed", lambda *x: self.refresh_inspection_page()) self.populate_hw_list()