goffice r2104 - in branches/goffice-0-6: . goffice/utils



Author: jbrefort
Date: Tue Jun  3 06:21:25 2008
New Revision: 2104
URL: http://svn.gnome.org/viewvc/goffice?rev=2104&view=rev

Log:
2008-06-03  Jean Brefort  <jean brefort normalesup org>

	* goffice/utils/go-marker.c: (go_marker_render): set dashes to NULL,
	fixes #536276.



Modified:
   branches/goffice-0-6/ChangeLog
   branches/goffice-0-6/NEWS
   branches/goffice-0-6/goffice/utils/go-marker.c

Modified: branches/goffice-0-6/NEWS
==============================================================================
--- branches/goffice-0-6/NEWS	(original)
+++ branches/goffice-0-6/NEWS	Tue Jun  3 06:21:25 2008
@@ -1,7 +1,9 @@
-goffice 0.6.4s:
+goffice 0.6.4:
+
 Jean:
 	* New boxplot feature requested: exclude outliers. [#534642]
 	* Fixed plot types activation/deactivation issues.
+	* Always use full lines when drawing markers. [#536276]
 
 --------------------------------------------------------------------------
 goffice 0.6.3:
@@ -10,7 +12,7 @@
 	* Switch from pcre to glib regexp handling.  [#482319]
 
 Jean:
-	* Don't try to use invalide data in box-plots. [#527249]
+	* Don't try to use invalid data in box-plots. [#527249]
 	* Add EPS export for charts if cairo supports.
 
 Jody:

Modified: branches/goffice-0-6/goffice/utils/go-marker.c
==============================================================================
--- branches/goffice-0-6/goffice/utils/go-marker.c	(original)
+++ branches/goffice-0-6/goffice/utils/go-marker.c	Tue Jun  3 06:21:25 2008
@@ -269,6 +269,7 @@
 
 	cairo_set_source_rgba (cr, GO_COLOR_TO_CAIRO (go_marker_get_outline_color (marker)));
 	cairo_set_line_width (cr, 2.0 * MARKER_OUTLINE_WIDTH);
+	cairo_set_dash (cr, NULL, 0, 0.);
 	go_cairo_emit_svg_path (cr, outline_path_raw);
 	cairo_stroke (cr);
 	cairo_restore (cr);



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