9dab6bfcb9
530f80f5-handle-missing-storage-volumes.patch 5310bd89-console-fix-unsetting-resize-guest.patch 5310e3ac-set-show_arrow-to-true.patch 5310e3ac-vmmConsolePages-toggle-visibilities-on-page-change.patch 5310e3ac-vmmDetails-toggle-visibilities-on-page-change.patch 5310e52d-fix-setting-default-window-size.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=147
21 lines
721 B
Diff
21 lines
721 B
Diff
Subject: console: Fix unsetting 'resize-guest' property from UI
|
|
From: Cole Robinson crobinso@redhat.com Fri Feb 28 11:46:05 2014 -0500
|
|
Date: Fri Feb 28 11:47:05 2014 -0500:
|
|
Git: 4a2493f1e4bede671eac713081f61965f036d6ed
|
|
|
|
Reported in the followup of bz 754559
|
|
|
|
diff --git a/virtManager/console.py b/virtManager/console.py
|
|
index ccbd6bf..122bf27 100644
|
|
--- a/virtManager/console.py
|
|
+++ b/virtManager/console.py
|
|
@@ -1092,7 +1092,7 @@ class vmmConsolePages(vmmGObjectUI):
|
|
|
|
def resizeguest_ui_changed_cb(self, src):
|
|
# Called from details.py
|
|
- if not src.get_active():
|
|
+ if not src.get_sensitive():
|
|
return
|
|
|
|
val = int(self.widget("details-menu-view-resizeguest").get_active())
|