goffice r2103 - in trunk: . goffice/utils



Author: jbrefort
Date: Tue Jun  3 06:21:22 2008
New Revision: 2103
URL: http://svn.gnome.org/viewvc/goffice?rev=2103&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:
   trunk/ChangeLog
   trunk/NEWS
   trunk/goffice/utils/go-marker.c

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Tue Jun  3 06:21:22 2008
@@ -4,6 +4,7 @@
 	* New boxplot feature requested: exclude outliers. [#534642]
 	* Moved GOConf code from gnumeric to goffice.
 	* Fixed plot types activation/deactivation issues.
+	* Always use full lines when drawing markers. [#536276]
 
 --------------------------------------------------------------------------
 goffice 0.6.3:
@@ -12,7 +13,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: trunk/goffice/utils/go-marker.c
==============================================================================
--- trunk/goffice/utils/go-marker.c	(original)
+++ trunk/goffice/utils/go-marker.c	Tue Jun  3 06:21:22 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]