[evolution-patches] editor animation



animations are not turning off in the undo stack at the moment, this
turns them off in the editor completely until it can be fixed (it is
probably nicer that way anyway).

--Larry

? test_editor
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/gtkhtml/components/html-editor/ChangeLog,v
retrieving revision 1.403
diff -u -p -r1.403 ChangeLog
--- ChangeLog	20 May 2003 18:25:13 -0000	1.403
+++ ChangeLog	20 May 2003 19:21:19 -0000
@@ -2,6 +2,8 @@
 
 	* editor-control-factory.c: add inline smiley and link bonobo
 	properties.
+	(editor_control_construct): disable animations while editing until
+	it works properly
 
 2003-05-17  Larry Ewing  <lewing ximian com>
 
Index: editor-control-factory.c
===================================================================
RCS file: /cvs/gnome/gtkhtml/components/html-editor/editor-control-factory.c,v
retrieving revision 1.129
diff -u -p -r1.129 editor-control-factory.c
--- editor-control-factory.c	20 May 2003 18:25:13 -0000	1.129
+++ editor-control-factory.c	20 May 2003 19:21:19 -0000
@@ -531,6 +531,7 @@ editor_control_construct (BonoboControl 
 	html_widget = gtk_html_new ();
 	gtk_html_load_empty (GTK_HTML (html_widget));
 	gtk_html_set_editable (GTK_HTML (html_widget), TRUE);
+	gtk_html_set_animate (GTK_HTML (html_widget), FALSE);
 
 	cd = gtk_html_control_data_new (GTK_HTML (html_widget), vbox);
 	g_signal_connect (control, "destroy", G_CALLBACK (control_destroy), cd);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]