# HG changeset patch # User Daniel Atallah # Date 1219884877 0 # Node ID 4a5c8feb83e6d72aac6f459495d86e984b6f7296 # Parent fd0e8c6ffa4b9f067deb4664f793bc7bc03b238f Patch from "brookingcharlie" to make "Open All Messages" the default response in the mail popup. Fixes #6746 diff -r fd0e8c6ffa4b -r 4a5c8feb83e6 pidgin/gtknotify.c --- a/pidgin/gtknotify.c Thu Aug 28 00:43:05 2008 +0000 +++ b/pidgin/gtknotify.c Thu Aug 28 00:54:37 2008 +0000 @@ -362,6 +362,10 @@ button = gtk_dialog_add_button(GTK_DIALOG(dialog), PIDGIN_STOCK_OPEN_MAIL, GTK_RESPONSE_YES); + /* make "Open All Messages" the default response */ + gtk_dialog_set_default_response(GTK_DIALOG(dialog), + GTK_RESPONSE_ACCEPT); + /* Setup the dialog */ gtk_container_set_border_width(GTK_CONTAINER(dialog), PIDGIN_HIG_BOX_SPACE); gtk_container_set_border_width(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), PIDGIN_HIG_BOX_SPACE);