766768c9d2
opensuse13.img for SLE-Server virtinst-detect-suse-distros.patch - bnc#881549 - virt-manager/xen: Error changing VM configuration: 'NoneType' object has no attribute 'split' virtinst-xenbus-disk-index-fix.patch - Upstream bug fix 538edb3b-manpage-fix-incorrect-description.patch - Upstream bug fixes 536677aa-better-handling-of-keyboard-input-type.patch 5385d602-lxc-no-default-disk.patch 53869170-virt-install-add-events-support.patch 538a11dc-raise-error-if-populating-summary-page-fails.patch 538a3609-virtconv-fix-use-of-relative-OVF-file.patch 538a3ba9-diskbackend-start-pool-if-not-running.patch 538ca3f3-use-correct-dictionary-keys-for-old-pool-net-polling.patch 538d00a4-xen-keyboard-cant-be-removed.patch 538e2f74-fix-pool-create-call.patch - Dropped 531e0a82-reverse-keyboard-grab-commit.patch. Fixed instead with this patch. 538a6862-vnc-dont-force-keyboard-grab-before-widget-is-realized.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=182
20 lines
868 B
Diff
20 lines
868 B
Diff
Subject: details: xen keyboard can't be removed either
|
|
From: Cole Robinson crobinso@redhat.com Mon Jun 2 18:54:28 2014 -0400
|
|
Date: Mon Jun 2 18:54:28 2014 -0400:
|
|
Git: 03670c38dc085ddf7b68edceda738ca6b506a2ba
|
|
|
|
|
|
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
|
|
@@ -2765,7 +2765,7 @@ class vmmDetails(vmmGObjectUI):
|
|
|
|
# Can't remove primary Xen or PS/2 mice
|
|
if ((inp.type == "mouse" and inp.bus in ("xen", "ps2")) or
|
|
- (inp.type == "keyboard" and inp.bus == "ps2")):
|
|
+ (inp.type == "keyboard" and inp.bus in ("xen", "ps2"))):
|
|
self.widget("config-remove").set_sensitive(False)
|
|
else:
|
|
self.widget("config-remove").set_sensitive(True)
|