diff options
author | Michael Wood <michael.g.wood@intel.com> | 2012-11-02 01:16:25 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-11-02 17:29:27 +0800 |
commit | c96b3f7e3b037f15e90386ef29299c9c48975bfa (patch) | |
tree | 1794e2f71a406d89e790ce92494dacd00dbd3ab2 | |
parent | 1ab4ef4318e16e1f94c8e6e66b167aa7bd3c69e7 (diff) | |
download | gsoc2013-empathy-c96b3f7e3b037f15e90386ef29299c9c48975bfa.tar gsoc2013-empathy-c96b3f7e3b037f15e90386ef29299c9c48975bfa.tar.gz gsoc2013-empathy-c96b3f7e3b037f15e90386ef29299c9c48975bfa.tar.bz2 gsoc2013-empathy-c96b3f7e3b037f15e90386ef29299c9c48975bfa.tar.lz gsoc2013-empathy-c96b3f7e3b037f15e90386ef29299c9c48975bfa.tar.xz gsoc2013-empathy-c96b3f7e3b037f15e90386ef29299c9c48975bfa.tar.zst gsoc2013-empathy-c96b3f7e3b037f15e90386ef29299c9c48975bfa.zip |
irc-network-dialog: Don't allow window resizing
Resizing causes blank space issues with the dialog.
https://bugzilla.gnome.org/show_bug.cgi?id=687361
-rw-r--r-- | libempathy-gtk/empathy-irc-network-dialog.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-irc-network-dialog.c b/libempathy-gtk/empathy-irc-network-dialog.c index a020c4a45..65f0a41bb 100644 --- a/libempathy-gtk/empathy-irc-network-dialog.c +++ b/libempathy-gtk/empathy-irc-network-dialog.c @@ -595,5 +595,7 @@ empathy_irc_network_dialog_show (EmpathyIrcNetwork *network, irc_network_dialog_network_update_buttons (dialog); gtk_widget_show_all (dialog->dialog); + gtk_window_set_resizable (GTK_WINDOW (dialog->dialog), FALSE); + return dialog->dialog; } |