# HG changeset patch # User Yoshiki Yazawa # Date 1209571922 0 # Node ID c18e82b59f02dcf7155356b2accfc071500fc77f # Parent 2f05586afa122f23c9b58025a305467d2f122832 removed annoying "Mute Sounds" short cut key diff -r 2f05586afa12 -r c18e82b59f02 pidgin/gtkblist.c --- a/pidgin/gtkblist.c Wed Apr 30 12:53:12 2008 +0000 +++ b/pidgin/gtkblist.c Wed Apr 30 16:12:02 2008 +0000 @@ -67,6 +67,11 @@ #define HEADLINE_CLOSE_SIZE 12 +/* I noticed that some of short cuts are very annoying. + If you really want to use them, change this to 1. --yaz +*/ +#define ENABLE_SHORTCUT 0 + typedef struct { PurpleAccount *account; @@ -3186,7 +3191,11 @@ { N_("/Tools/R_oom List"), NULL, pidgin_roomlist_dialog_show, 0, "", NULL }, { N_("/Tools/System _Log"), NULL, gtk_blist_show_systemlog_cb, 3, "", NULL }, { "/Tools/sep3", NULL, NULL, 0, "", NULL }, +#if ENABLE_SHORTCUT { N_("/Tools/Mute _Sounds"), "S", pidgin_blist_mute_sounds_cb, 0, "", NULL }, +#else + { N_("/Tools/Mute _Sounds"), NULL, pidgin_blist_mute_sounds_cb, 0, "", NULL }, +#endif /* Help */ { N_("/_Help"), NULL, NULL, 0, "", NULL }, { N_("/Help/Online _Help"), "F1", gtk_blist_show_onlinehelp_cb, 0, "", GTK_STOCK_HELP },