# HG changeset patch # User Mark Doliner # Date 1183355775 0 # Node ID 526cc36424abd7dc4ee1d9b47f9288d424518793 # Parent 304036f1727473392423d2fbc7148888dc55e4f9 Change the default value for the "Show system tray icon: always/never/new messages" preference to be "new messages" I think this is good, and it should take care of http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=244433 Why should closing an application minimize it to the system tray? Closing an application should close it and minimizing it should minimize it to the taskbar. I didn't see any strong objections when we talked about it on the mailing list. I think we should leave everything else that we talked about as-is. diff -r 304036f17274 -r 526cc36424ab pidgin/gtkdocklet.c --- a/pidgin/gtkdocklet.c Sun Jul 01 17:07:17 2007 +0000 +++ b/pidgin/gtkdocklet.c Mon Jul 02 05:56:15 2007 +0000 @@ -636,7 +636,7 @@ purple_prefs_add_none(PIDGIN_PREFS_ROOT "/docklet"); purple_prefs_add_bool(PIDGIN_PREFS_ROOT "/docklet/blink", FALSE); - purple_prefs_add_string(PIDGIN_PREFS_ROOT "/docklet/show", "always"); + purple_prefs_add_string(PIDGIN_PREFS_ROOT "/docklet/show", "pending"); purple_prefs_connect_callback(docklet_handle, PIDGIN_PREFS_ROOT "/docklet/show", docklet_show_pref_changed_cb, NULL);