# HG changeset patch # User Gary Kramlich # Date 1130110863 0 # Node ID 400b802cd62b559a26d841f30d67fafe56ad3f70 # Parent 60fb8b4b61c1b2332f36f5859fe7159fef4c1e88 [gaim-migrate @ 14066] Set the plugin's preference dialog's title to the name of the plugin. I'm sure this isn't very HIGish but it makes sense to me... committer: Tailor Script diff -r 60fb8b4b61c1 -r 400b802cd62b src/gtkplugin.c --- a/src/gtkplugin.c Sun Oct 23 23:34:52 2005 +0000 +++ b/src/gtkplugin.c Sun Oct 23 23:41:03 2005 +0000 @@ -263,6 +263,7 @@ g_signal_connect(G_OBJECT(dialog), "response", G_CALLBACK(pref_dialog_response_cb), plug); gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), box); gtk_window_set_role(GTK_WINDOW(dialog), "plugin_config"); + gtk_window_set_title(GTK_WINDOW(dialog), gaim_plugin_get_name(plug)); gtk_widget_show_all(dialog); g_value_unset(&val); break;