Mercurial > pidgin
changeset 9708:d49a19e8320c
[gaim-migrate @ 10569]
Let's make the Set Away Message dialog higgy(er?)
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 08 Aug 2004 00:03:12 +0000 |
parents | 0b1538126851 |
children | 4d05b6e9e9cd |
files | src/dialogs.c |
diffstat | 1 files changed, 1 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dialogs.c Sat Aug 07 23:28:51 2004 +0000 +++ b/src/dialogs.c Sun Aug 08 00:03:12 2004 +0000 @@ -714,24 +714,17 @@ /* Set up window */ GAIM_DIALOG(ca->window); gtk_widget_set_size_request(ca->window, -1, 250); - gtk_container_set_border_width(GTK_CONTAINER(ca->window), 6); gtk_window_set_role(GTK_WINDOW(ca->window), "away_mess"); gtk_window_set_title(GTK_WINDOW(ca->window), _("New away message")); g_signal_connect(G_OBJECT(ca->window), "delete_event", G_CALLBACK(away_mess_destroy_ca), ca); - /* - * This would be higgy... but I think it's pretty ugly --Mark - * If you want to use this, make sure you add the vbox to the hbox below - */ - /* hbox = gtk_hbox_new(FALSE, 12); gtk_container_set_border_width(GTK_CONTAINER(hbox), 12); gtk_container_add(GTK_CONTAINER(ca->window), hbox); - */ vbox = gtk_vbox_new(FALSE, 12); - gtk_container_add(GTK_CONTAINER(ca->window), vbox); + gtk_container_add(GTK_CONTAINER(hbox), vbox); /* Away message title */ hbox = gtk_hbox_new(FALSE, 0);