Mercurial > pidgin
changeset 4409:0521eec12c33
[gaim-migrate @ 4682]
This resize behavior is a lot more natural, I think. When you resize
an IM vertically, the input area stays the same height, and the display
part changes size.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Fri, 24 Jan 2003 05:37:26 +0000 |
parents | 94bf204f837e |
children | 61c9c2bd2a9c |
files | src/gtkconv.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkconv.c Fri Jan 24 00:40:53 2003 +0000 +++ b/src/gtkconv.c Fri Jan 24 05:37:26 2003 +0000 @@ -2841,7 +2841,7 @@ /* Build the right pane. */ lbox = gtk_vbox_new(FALSE, 5); - gtk_paned_pack2(GTK_PANED(hpaned), lbox, TRUE, TRUE); + gtk_paned_pack2(GTK_PANED(hpaned), lbox, FALSE, TRUE); gtk_widget_show(lbox); /* Setup the label telling how many people are in the room. */ @@ -2935,7 +2935,7 @@ /* Build the toolbar. */ vbox = gtk_vbox_new(FALSE, 5); - gtk_paned_pack2(GTK_PANED(vpaned), vbox, TRUE, FALSE); + gtk_paned_pack2(GTK_PANED(vpaned), vbox, FALSE, FALSE); gtk_widget_show(vbox); gtkconv->toolbar.toolbar = build_conv_toolbar(conv); @@ -3003,7 +3003,7 @@ /* Setup the top part of the pane. */ vbox = gtk_vbox_new(FALSE, 5); - gtk_paned_pack1(GTK_PANED(paned), vbox, FALSE, TRUE); + gtk_paned_pack1(GTK_PANED(paned), vbox, TRUE, TRUE); gtk_widget_show(vbox); /* Setup the gtkimhtml widget. */