From 911d82f99b6f7b5a01c72ba930ce9613d090e657 Mon Sep 17 00:00:00 2001 From: DONGGEUN YOO <59035549+bleeqer@users.noreply.github.com> Date: Sat, 11 Oct 2025 12:22:55 -0400 Subject: [PATCH] BIM: Fix IFC import options dialog not showing until Preferences are opened (#24574) --- src/Mod/BIM/nativeifc/ifc_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/BIM/nativeifc/ifc_import.py b/src/Mod/BIM/nativeifc/ifc_import.py index 5f539c1cf9..3d79e66a44 100644 --- a/src/Mod/BIM/nativeifc/ifc_import.py +++ b/src/Mod/BIM/nativeifc/ifc_import.py @@ -148,7 +148,7 @@ def get_options(strategy=None, shapemode=None, switchwb=None, silent=False): switchwb = PARAMS.GetBool("SwitchWB", True) if silent: return strategy, shapemode, switchwb - ask = PARAMS.GetBool("AskAgain", False) + ask = PARAMS.GetBool("AskAgain", True) if ask and FreeCAD.GuiUp: import FreeCADGui