850019f018
53ac1f8d-fix_show_err_typo.patch 53ac1f8d-createnet-validate-last-page-before-creating-network.patch - KVM: Don't check for /dev/kvm. It is now built into the kernel virtman-kvm.patch - Upstream bug fix 53a995cb-fix-usb-storage-removable-syntax.patch - Upstream bug fixes 5397b647-createnet-enable-specifying-29-subnet.patch 539e8cca-createpool-fix-creation-of-gluster-pools.patch 53a05e73-fix-edit-maxvcpus.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=184
17 lines
753 B
Diff
17 lines
753 B
Diff
bnc#874594 - virt-manager allows issuing of start for xen domain twice, resulting in failure
|
|
|
|
Index: virt-manager-1.0.1/virtManager/details.py
|
|
===================================================================
|
|
--- virt-manager-1.0.1.orig/virtManager/details.py
|
|
+++ virt-manager-1.0.1/virtManager/details.py
|
|
@@ -1462,6 +1462,9 @@ class vmmDetails(vmmGObjectUI):
|
|
self.widget("details-menu-usb-redirection").set_sensitive(can_usb)
|
|
|
|
def control_vm_run(self, src_ignore):
|
|
+ # De-sensitize widget so a double click on the icon won't attempt to
|
|
+ # start the VM twice
|
|
+ self.widget("control-run").set_sensitive(False)
|
|
self.emit("action-run-domain",
|
|
self.vm.conn.get_uri(), self.vm.get_uuid())
|
|
|