# HG changeset patch # User Howard Chu # Date 1324532845 0 # Node ID ad3e9caa955bed2dc90d853b9a7c51dd8e6bd870 # Parent 726c37fbb36117e0304ac785f6559a6427150004 Ensure labelled buttons are shown for search results in Pidgin. Fixes #14821. committer: Elliott Sales de Andrade diff -r 726c37fbb361 -r ad3e9caa955b pidgin/gtknotify.c --- a/pidgin/gtknotify.c Sat Nov 25 14:25:03 2017 -0600 +++ b/pidgin/gtknotify.c Thu Dec 22 05:47:25 2011 +0000 @@ -1044,7 +1044,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"); }