# HG changeset patch # User hyc@symas.com # Date 1324532845 0 # Node ID 5b1666b06b34dfe4b5880cb0dba3a2fed975640b # Parent f13cb8438ee80b0e2444a5943afee74f2240eb89 Ensure labelled buttons are shown for search results in Pidgin. Fixes #14821. committer: Elliott Sales de Andrade diff -r f13cb8438ee8 -r 5b1666b06b34 pidgin/gtknotify.c --- a/pidgin/gtknotify.c Thu Dec 22 05:45:40 2011 +0000 +++ b/pidgin/gtknotify.c Thu Dec 22 05:47:25 2011 +0000 @@ -1031,7 +1031,7 @@ switch (b->type) { case PURPLE_NOTIFY_BUTTON_LABELED: if(b->label) { - button = gtk_button_new_with_label(b->label); + button = gtk_dialog_add_button(GTK_DIALOG(window), b->label, GTK_RESPONSE_NONE); } else { purple_debug_warning("gtknotify", "Missing button label\n"); }