I think the default behaviour for the quit buttons (the ones with the red 
icons) should be to make gPodder quit. Right now those buttons minimize 
gPodder to the tray which is annoying in my opinion.

Attached is a patch that does just that. Let me know what you think,

nick
--- gpodder-r626/src/gpodder/gui.py	2008-03-21 16:44:31.000000000 -0400
+++ gpodder-r626-dev/src/gpodder/gui.py	2008-03-21 18:17:34.000000000 -0400
@@ -931,7 +931,7 @@
 
         downloading = services.download_status_manager.has_items()
 
-        if not gl.config.on_quit_ask and gl.config.on_quit_systray and self.tray_icon:
+        if not gl.config.on_quit_ask and gl.config.on_quit_systray and self.tray_icon and widget.name not in ('toolQuit', 'itemClose'):
             self.iconify_main_window()
         elif gl.config.on_quit_ask or downloading:
             dialog = gtk.MessageDialog(self.gPodder, gtk.DIALOG_MODAL, gtk.MESSAGE_QUESTION, gtk.BUTTONS_NONE)
_______________________________________________
gpodder-devel mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/gpodder-devel

Reply via email to