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())
|