|
From: <ai...@us...> - 2013-05-01 21:44:21
|
Revision: 12318
http://sourceforge.net/p/plplot/code/12318
Author: airwin
Date: 2013-05-01 21:44:17 +0000 (Wed, 01 May 2013)
Log Message:
-----------
Fix pllegend issue when non-integral line width values are specified.
Modified Paths:
--------------
trunk/src/pllegend.c
Modified: trunk/src/pllegend.c
===================================================================
--- trunk/src/pllegend.c 2013-05-01 19:54:31 UTC (rev 12317)
+++ trunk/src/pllegend.c 2013-05-01 21:44:17 UTC (rev 12318)
@@ -555,8 +555,8 @@
// Active attributes to be saved and restored afterward.
PLINT col0_save = plsc->icol0,
line_style_save = plsc->line_style,
- line_width_save = plsc->width,
pattern_save = plsc->patt;
+ PLFLT line_width_save = plsc->width;
PLFLT text_scale_save = plsc->chrht / plsc->chrdef;
// Saved external world coordinates of viewport.
PLFLT xwmin_save, xwmax_save, ywmin_save, ywmax_save;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|