# HG changeset patch # User Nathan Walp # Date 1066081913 0 # Node ID bdf0e5f711246b52fc6a422feaef84caa26ce652 # Parent dee9f6aebbf3722b3b63a1b19554e7b6d658160f [gaim-migrate @ 7828] it bothers me that this fixes it, but this fixes the scrolling in the history plugin committer: Tailor Script diff -r dee9f6aebbf3 -r bdf0e5f71124 plugins/history.c --- a/plugins/history.c Mon Oct 13 18:54:40 2003 +0000 +++ b/plugins/history.c Mon Oct 13 21:51:53 2003 +0000 @@ -63,12 +63,10 @@ gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), tmp2, options); gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), "
", options); - gtk_text_buffer_get_end_iter(GTK_IMHTML(gtkconv->imhtml)->text_buffer, & -end); - gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(gtkconv->imhtml), &end, 0, 0, - 0, 0); - gtk_text_buffer_move_mark_by_name(GTK_IMHTML(gtkconv->imhtml)->text_buffer, - "insert", &end); + gtk_text_buffer_get_end_iter(GTK_IMHTML(gtkconv->imhtml)->text_buffer, + &end); + gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(gtkconv->imhtml), &end, 0, + TRUE, 0, 0); g_free(tmp2); g_free(userdir);