From 64c346b7fa9c77ef91a79db93e544bb2ddacae80 Mon Sep 17 00:00:00 2001 From: Roy-043 Date: Mon, 25 Sep 2023 22:09:41 +0200 Subject: [PATCH] Arch: ArchSectionPlane.getSVG add linespacing argument Forum topic: https://forum.freecad.org/viewtopic.php?t=81470 --- src/Mod/Arch/ArchSectionPlane.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Mod/Arch/ArchSectionPlane.py b/src/Mod/Arch/ArchSectionPlane.py index 8e6177dfc1..c2c340eaef 100644 --- a/src/Mod/Arch/ArchSectionPlane.py +++ b/src/Mod/Arch/ArchSectionPlane.py @@ -281,6 +281,7 @@ def getSVG(source, linewidth=1, lineColor=(0.0, 0.0, 0.0), fontsize=1, + linespacing=None, showFill=False, fillColor=(1.0, 1.0, 1.0), techdraw=False, @@ -504,6 +505,7 @@ def getSVG(source, scale=scale, linewidth=svgSymbolLineWidth, fontsize=fontsize, + linespacing=linespacing, direction=direction, color=lineColor, techdraw=techdraw, @@ -526,6 +528,7 @@ def getSVG(source, scale=scale, linewidth=svgSymbolLineWidth, fontsize=fontsize, + linespacing=linespacing, direction=direction, color=lineColor, techdraw=techdraw, @@ -558,6 +561,7 @@ def getSVG(source, scale=scale, linewidth=svgSymbolLineWidth, fontsize=fontsize, + linespacing=linespacing, fillstyle="none", direction=direction, color=lineColor,