# HG changeset patch # User Christian Hammond # Date 1043386646 0 # Node ID 0521eec12c338abf55b2dd88a6f8852b5981c76a # Parent 94bf204f837e249d0b489d9978b643f25f396f6b [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 diff -r 94bf204f837e -r 0521eec12c33 src/gtkconv.c --- 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. */