comparison src/gtklog.c @ 13280:3de53fe8345f

[gaim-migrate @ 15646] Always show a vertical scrollbar on conversations imhtmls. This will solve the shrinking conversation window bug. I chose this approach instead of saving the size of the window (as I had previous talked about), as this prevents the contents of the scrollback from rewrapping when the scrollbars appear or disappear. It also just seems to feel like the right thing to do, but maybe that's me being lazy. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 14 Feb 2006 05:43:43 +0000
parents fcde3faa1f57
children ffd724befbf8
comparison
equal deleted inserted replaced
13279:0c50401679d3 13280:3de53fe8345f
408 /* A fancy little box ************/ 408 /* A fancy little box ************/
409 vbox = gtk_vbox_new(FALSE, GAIM_HIG_BOX_SPACE); 409 vbox = gtk_vbox_new(FALSE, GAIM_HIG_BOX_SPACE);
410 gtk_paned_add2(GTK_PANED(pane), vbox); 410 gtk_paned_add2(GTK_PANED(pane), vbox);
411 411
412 /* Viewer ************/ 412 /* Viewer ************/
413 frame = gaim_gtk_create_imhtml(FALSE, &lv->imhtml, NULL); 413 frame = gaim_gtk_create_imhtml(FALSE, &lv->imhtml, NULL, NULL);
414 gtk_widget_set_name(lv->imhtml, "gaim_gtklog_imhtml"); 414 gtk_widget_set_name(lv->imhtml, "gaim_gtklog_imhtml");
415 gtk_widget_set_size_request(lv->imhtml, 320, 200); 415 gtk_widget_set_size_request(lv->imhtml, 320, 200);
416 gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0); 416 gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0);
417 gtk_widget_show(frame); 417 gtk_widget_show(frame);
418 418