From a4e6280a6c7fe7ea742447ef0d29861a975fde2d Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Tue, 7 Apr 2015 19:43:09 -0400 Subject: [PATCH] details: Refresh boot arrows when unchecking an item --- virtManager/details.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/virtManager/details.py b/virtManager/details.py index 50e95033a..e90f6c461 100644 --- a/virtManager/details.py +++ b/virtManager/details.py @@ -1749,7 +1749,7 @@ class vmmDetails(vmmGObjectUI): self.config_cpu_topology_changed() # Boot device / Autostart - def config_bootdev_selected(self, ignore): + def config_bootdev_selected(self, ignore=None): boot_row = self.get_boot_selection() boot_selection = boot_row and boot_row[BOOT_KEY] boot_devs = self.get_config_boot_order() @@ -1769,6 +1769,7 @@ class vmmDetails(vmmGObjectUI): row = model[index] row[BOOT_ACTIVE] = not row[BOOT_ACTIVE] + self.config_bootdev_selected() self.enable_apply(EDIT_BOOTORDER) def config_boot_move(self, src, move_up):