From 01037621525ca9ac9747011d49c395cf936d332b Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 22 Apr 2017 07:19:25 +0200 Subject: [PATCH] Fix wrong variable name symbolLineWidth -> svgSymbolLineWidth. --- src/Mod/Arch/ArchSectionPlane.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Mod/Arch/ArchSectionPlane.py b/src/Mod/Arch/ArchSectionPlane.py index 866b601976..8128bc7ff0 100644 --- a/src/Mod/Arch/ArchSectionPlane.py +++ b/src/Mod/Arch/ArchSectionPlane.py @@ -254,7 +254,7 @@ def getSVG(section, renderMode="Wireframe", allOn=False, showHidden=False, scale if not techdraw: svg += '' for d in drafts: - svg += Draft.getSVG(d, scale=scale, linewidth=symbolLineWidth, + svg += Draft.getSVG(d, scale=scale, linewidth=svgSymbolLineWidth, fontsize=fontsize, direction=direction, color=lineColor, techdraw=techdraw, rotation=rotation) if not techdraw: @@ -267,7 +267,7 @@ def getSVG(section, renderMode="Wireframe", allOn=False, showHidden=False, scale if not techdraw: svg += '' for s in spaces: - svg += Draft.getSVG(s, scale=scale, linewidth=symbolLineWidth, + svg += Draft.getSVG(s, scale=scale, linewidth=svgSymbolLineWidth, fontsize=fontsize, direction=direction, color=lineColor, techdraw=techdraw, rotation=rotation) if not techdraw: @@ -297,7 +297,8 @@ def getSVG(section, renderMode="Wireframe", allOn=False, showHidden=False, scale if not techdraw: svg += '' for s in sh: - svg += Draft.getSVG(s, scale=scale, linewidth=symbolLineWidth, + svg += Draft.getSVG(s, scale=scale, + linewidth=svgSymbolLineWidth, fontsize=fontsize, fillstyle="none", direction=direction, color=lineColor, techdraw=techdraw, rotation=rotation)