genius r730 - in trunk: . src



Author: jirka
Date: Sat Feb 21 09:12:49 2009
New Revision: 730
URL: http://svn.gnome.org/viewvc/genius?rev=730&view=rev

Log:

Sat Feb 21 03:12:36 2009  Jiri (George) Lebl <jirka 5z com>

	* src/graphing.c: after ps/eps export queue draw on the plot canvas
	  because it for some reason needs it



Modified:
   trunk/ChangeLog
   trunk/src/graphing.c

Modified: trunk/src/graphing.c
==============================================================================
--- trunk/src/graphing.c	(original)
+++ trunk/src/graphing.c	Sat Feb 21 09:12:49 2009
@@ -677,6 +677,11 @@
 	else
 		ret = FALSE;
 
+	/* need this for some reason */
+	if (plot_canvas != NULL) {
+		gtk_widget_queue_draw (GTK_WIDGET (plot_canvas));
+	}
+
 	if ( ! ret || interrupted) {
 		plot_in_progress --;
 		plot_window_setup ();
@@ -789,6 +794,11 @@
 	else
 		ret = FALSE;
 
+	/* need this for some reason */
+	if (plot_canvas != NULL) {
+		gtk_widget_queue_draw (GTK_WIDGET (plot_canvas));
+	}
+
 	/* If we used a temporary file, now use ps2epsi */
 	if (fd >= 0) {
 		int status;



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