diff src/conversation.c @ 3922:30f52e7afd1d

[gaim-migrate @ 4094] This is gtkimhtml2--it's a subclass of gtktextview. It's not done yet. It doesn't do smileys or images, and what it does do so far, it doesn't do perfectly. But it's perfectly 100% usable, and like 80,000 times faster than gtkimhtml + Pango. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Fri, 08 Nov 2002 06:10:35 +0000
parents e4e9135d41b7
children b8398b505b03
line wrap: on
line diff
--- a/src/conversation.c	Fri Nov 08 06:05:03 2002 +0000
+++ b/src/conversation.c	Fri Nov 08 06:10:35 2002 +0000
@@ -191,7 +191,7 @@
 	update_checkbox(c);
 	update_smilies(c);
 	plugin_event(event_new_conversation, name);
-	gtk_imhtml_to_bottom(GTK_IMHTML(c->text));
+	/*gtk_imhtml_to_bottom(c->text);*/
 	return c;
 }
 
@@ -2620,7 +2620,7 @@
 
 	update_convo_status(c);
 
-	gtk_imhtml_to_bottom(GTK_IMHTML(c->text));
+	/*gtk_imhtml_to_bottom(c->text);*/
 }
 
 void update_convo_status(struct conversation *c) {
@@ -2848,8 +2848,6 @@
 	text = gtk_imhtml_new(NULL, NULL);
 	c->text = text;
 	gtk_container_add(GTK_CONTAINER(sw), text);
-	GTK_LAYOUT(text)->hadjustment->step_increment = 10.0;
-	GTK_LAYOUT(text)->vadjustment->step_increment = 10.0;
 	if (convo_options & OPT_CONVO_SHOW_TIME)
 		gtk_imhtml_show_comments(GTK_IMHTML(text), TRUE);
 	gaim_setup_imhtml(text);