From e270d63e5ca4b91c2e3246d48ed261c425de5198 Mon Sep 17 00:00:00 2001 From: Eugene Zhukov Date: Wed, 26 Nov 2025 15:25:20 +0200 Subject: [PATCH] Change params variable to uppercase PARAMS (#25663) Addresses #25565 --- src/Mod/BIM/nativeifc/ifc_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/BIM/nativeifc/ifc_status.py b/src/Mod/BIM/nativeifc/ifc_status.py index 29d0125d15..feffdecd56 100644 --- a/src/Mod/BIM/nativeifc/ifc_status.py +++ b/src/Mod/BIM/nativeifc/ifc_status.py @@ -31,7 +31,7 @@ import FreeCAD import FreeCADGui translate = FreeCAD.Qt.translate -params = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/NativeIFC") +PARAMS = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/NativeIFC") text_on = translate("BIM", "Strict IFC mode is ON (all objects are IFC)") text_off = translate("BIM", "Strict IFC mode is OFF (IFC and non-IFC objects allowed)")