From fff9c9ba9e503b314cf92bd3d7d275eb00451f4c Mon Sep 17 00:00:00 2001 From: micio Date: Tue, 14 Aug 2012 00:48:55 +0000 Subject: [PATCH] Bazaar/DXF : scale polyline width with transform matrix git-svn-id: svn://ultimatepp.org/upp/trunk@5281 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- bazaar/DXF/LwPolyline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazaar/DXF/LwPolyline.cpp b/bazaar/DXF/LwPolyline.cpp index 13d2a076c..242287456 100644 --- a/bazaar/DXF/LwPolyline.cpp +++ b/bazaar/DXF/LwPolyline.cpp @@ -317,7 +317,7 @@ DXFLwPolyline &DXFLwPolyline::Open(void) // get/set global width DXFLwPolyline &DXFLwPolyline::SetWidth(double w) { - width = w; + width = S(w); return *this; }