Mercurial > pidgin
changeset 30488:c8a5c09df242
Auto-parent the Plugins dialog.
Fixes #12404.
committer: Elliott Sales de Andrade <qulogic@pidgin.im>
author | Gabriel Schulhof <nix@go-nix.ca> |
---|---|
date | Fri, 03 Sep 2010 20:56:29 +0000 |
parents | 1aa5e2934ef0 |
children | cd7b7fa1a420 |
files | pidgin/gtkplugin.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtkplugin.c Fri Sep 03 07:28:41 2010 +0000 +++ b/pidgin/gtkplugin.c Fri Sep 03 20:56:29 2010 +0000 @@ -800,5 +800,8 @@ g_signal_connect (G_OBJECT (sel), "changed", G_CALLBACK (prefs_plugin_sel), NULL); g_signal_connect(G_OBJECT(plugin_dialog), "response", G_CALLBACK(plugin_dialog_response_cb), sel); gtk_window_set_default_size(GTK_WINDOW(plugin_dialog), 430, 530); + + pidgin_auto_parent_window(GTK_WINDOW(plugin_dialog)); + gtk_widget_show_all(plugin_dialog); }