From dc7ccc41afae100d875ed8a4f3407aa4e99716be Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 28 Jul 2014 18:43:11 +0200 Subject: [PATCH] + remove crude workaround as this seems to work now --- src/Mod/Part/Init.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Mod/Part/Init.py b/src/Mod/Part/Init.py index 6423a47ae504..b81a441b45da 100644 --- a/src/Mod/Part/Init.py +++ b/src/Mod/Part/Init.py @@ -51,11 +51,3 @@ def Info(self): FreeCAD.addExportType("IGES format (*.iges *.igs)","Part") FreeCAD.addImportType("STEP with colors (*.step *.stp)","ImportGui") FreeCAD.addExportType("STEP with colors (*.step *.stp)","ImportGui") - -# weird behaviour as 64-bit application on Windows: -# some modules like Sketcher doesn't load if Part is not loaded before with this error: -# DLL load failed: The specified procedure could not be found -import platform -if platform.architecture()[0] == '64bit' and platform.system() == 'Windows': - import Part -