From 570b7d94b3b2414e376d9eddd4f3a2df1e4dbb88 Mon Sep 17 00:00:00 2001 From: Lukas Treyer Date: Tue, 21 Oct 2014 18:21:49 +0200 Subject: FIX T42252: Arcs are scaled correctly now. The scale factor now also accepts comas, not only points (comas are being replaced by points internally). --- io_import_dxf/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io_import_dxf/__init__.py') diff --git a/io_import_dxf/__init__.py b/io_import_dxf/__init__.py index fae5b173..d8385f89 100644 --- a/io_import_dxf/__init__.py +++ b/io_import_dxf/__init__.py @@ -496,7 +496,7 @@ class IMPORT_OT_dxf(bpy.types.Operator): proj_scn = None dxf_unit_scale = 1.0 if self.use_georeferencing: - dxf_unit_scale = float(self.dxf_scale) + dxf_unit_scale = float(self.dxf_scale.replace(",", ".")) if PYPROJ: if self.proj_dxf != 'NONE': if self.proj_dxf == 'USER': -- cgit v1.2.3