4648861824
535584ed-fix-target-validation-when-editing-device.patch - bnc#874408 - virt-manager and libvirt issues persist - unable to create or launch virtman-vminstall.patch - Upstream bug fix 5350d9cc-display-error-on-empty-installation-URL.patch - Dropped unused and unnecessary patches virtinst-cdrom.patch virtman-update-backend.patch virtman-slow-mouse.patch virtman-reverse-serialcon.patch - Reordered some patches - Upstream bug fixes 534bcfa0-use-uniformed-expression-of-Default.patch 534be092-early-detect-ftp-connection-errors.patch 534d45db-hiding-removebutton-for-USB-controller.patch 534d6406-display-the-domain-for-PCI-devices.patch 534eafe4-avoid-useless-errors-when-connection-closes.patch - bnc#872789 - XEN domain fails to start when xen disk is atttached virtinst-xenbus-disk-index-fix.patch - bnc#872777 - virt-manager - Error shutting down domain: internal error: Failed to shutdown domain '3' with libxenlight virtman-shutdown-with-acpi-button.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=166
25 lines
1.1 KiB
Diff
25 lines
1.1 KiB
Diff
Subject: details: hiding removebutton for USB controller
|
|
From: Chen Hanxiao chenhanxiao@cn.fujitsu.com Tue Apr 15 22:44:43 2014 +0800
|
|
Date: Tue Apr 15 22:44:43 2014 +0800:
|
|
Git: 86fc54be8e1ab40dd3fc7533dd23fe4787f8c5c8
|
|
|
|
commit 4c53debd8a8e4c193e211cfa5128c9e88392c0a1
|
|
break hiding "config-remove" for USB controller.
|
|
This patch will fix this issue.
|
|
|
|
Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
|
|
|
|
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
|
|
@@ -3041,7 +3041,7 @@ class vmmDetails(vmmGObjectUI):
|
|
model.append(["ich9-ehci1", "USB 2"])
|
|
model.append(["nec-xhci", "USB 3"])
|
|
self.widget("config-remove").set_sensitive(False)
|
|
- if dev.type == virtinst.VirtualController.TYPE_SCSI:
|
|
+ elif dev.type == virtinst.VirtualController.TYPE_SCSI:
|
|
model.append(["default", "Default"])
|
|
model.append(["virtio-scsi", "VirtIO SCSI"])
|
|
else:
|