ask if we really want to uit Gajim when systray is hidden

This commit is contained in:
Yann Leboulanger 2009-06-23 22:00:34 +02:00
parent 84d1eb4bc4
commit 31dd0b882c
1 changed files with 9 additions and 1 deletions

View File

@ -2196,8 +2196,16 @@ class RosterWindow:
'quit_on_roster_x_button') and gajim.config.get('trayicon') != 'on_event':
self.tooltip.hide_tooltip()
self.window.hide()
else:
elif gajim.config.get('quit_on_roster_x_button'):
self.on_quit_request()
else:
def on_ok(checked):
if checked:
gajim.config.set('quit_on_roster_x_button', True)
self.on_quit_request()
dialogs.ConfirmationDialogiCheck(_('Really quit Gajim?'),
_('Are you sure you want to quit Gajim?'),
_('Do _not ask me again'), on_response_ok=on_ok)
return True # do NOT destroy the window
def prepare_quit(self):