BIM: Remove calls to obsolete Draft.getParam

See #20198.
This commit is contained in:
Roy-043
2025-03-26 11:03:21 +01:00
parent 7f9eb9932f
commit 2eabba29cb

View File

@@ -145,6 +145,7 @@ class BIM_ProjectManager:
import Draft
import FreeCADGui
import Part
from draftutils import params
vaxes = []
haxes = []
@@ -307,8 +308,8 @@ class BIM_ProjectManager:
outtext = Draft.make_text(
[buildingname],
FreeCAD.Vector(
Draft.getParam("textheight", 0.20) * 0.3,
-Draft.getParam("textheight", 0.20) * 1.43,
params.get_param("textheight") * 0.3,
-params.get_param("textheight") * 1.43,
0,
),
)
@@ -325,8 +326,8 @@ class BIM_ProjectManager:
axisV.Label = translate("BIM", "Vertical Axes")
axisV.ViewObject.BubblePosition = "Both"
axisV.ViewObject.LineWidth = self.form.lineWidth.value()
axisV.ViewObject.FontSize = Draft.getParam("textheight", 0.20)
axisV.ViewObject.BubbleSize = Draft.getParam("textheight", 0.20) * 1.43
axisV.ViewObject.FontSize = params.get_param("textheight")
axisV.ViewObject.BubbleSize = params.get_param("textheight") * 1.43
axisV.ViewObject.LineColor = color
axisH = None
if self.form.countHAxes.value() and distHAxes:
@@ -337,8 +338,8 @@ class BIM_ProjectManager:
axisH.ViewObject.BubblePosition = "Both"
axisH.ViewObject.NumberingStyle = "A,B,C"
axisH.ViewObject.LineWidth = self.form.lineWidth.value()
axisH.ViewObject.FontSize = Draft.getParam("textheight", 0.20)
axisH.ViewObject.BubbleSize = Draft.getParam("textheight", 0.20) * 1.43
axisH.ViewObject.FontSize = params.get_param("textheight")
axisH.ViewObject.BubbleSize = params.get_param("textheight") * 1.43
axisH.Placement.Rotation = FreeCAD.Rotation(FreeCAD.Vector(0, 0, 1), 90)
axisH.ViewObject.LineColor = color
if axisV and axisH: