virtManager: always save "do not show again" setting

Any other message box performs different than "Unapplied changes",
which stores this information regardless of the user choice of
Yes/No.

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1047874

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
Giuseppe Scrivano 2014-07-24 17:41:11 +02:00
parent 4ba378d1b0
commit 92de2db42b
3 changed files with 2 additions and 7 deletions

View File

@ -1190,7 +1190,6 @@ class vmmDetails(vmmGObjectUI):
text1=(_("There are unapplied changes. Would you like to apply "
"them now?")),
chktext=_("Don't warn me again."),
alwaysrecord=True,
default=False):
return False

View File

@ -1,6 +1,6 @@
# Error dialog with extensible "details" button.
#
# Copyright (C) 2007, 2013 Red Hat, Inc.
# Copyright (C) 2007, 2013-2014 Red Hat, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -180,14 +180,12 @@ class vmmErrorDialog(vmmGObject):
chktext=chktext)
def chkbox_helper(self, getcb, setcb, text1, text2=None,
alwaysrecord=False,
default=True,
chktext=_("Don't ask me again")):
"""
Helper to prompt user about proceeding with an operation
Returns True if the 'yes' or 'ok' button was selected, False otherwise
@alwaysrecord: Don't require user to select 'yes' to record chkbox value
@default: What value to return if getcb tells us not to prompt
"""
do_prompt = getcb()
@ -199,8 +197,7 @@ class vmmErrorDialog(vmmGObject):
chktext=chktext,
buttons=Gtk.ButtonsType.YES_NO)
response, skip_prompt = res
if alwaysrecord or response:
setcb(not skip_prompt)
setcb(not skip_prompt)
return response

View File

@ -1386,7 +1386,6 @@ class vmmHost(vmmGObjectUI):
text1=(_("There are unapplied changes. "
"Would you like to apply them now?")),
chktext=_("Don't warn me again."),
alwaysrecord=True,
default=False):
self.pool_apply()
self.net_apply()