From 43ec624f4d0785a15b1aa7dc679f9627b10ed5c6 Mon Sep 17 00:00:00 2001 From: Thomas Larsson <thomas_larsson_01@hotmail.com> Date: Tue, 10 Apr 2012 04:16:51 +0000 Subject: [PATCH] Removed crash-safe option. Deleting verts does not seem to cause a crash anymore. --- io_import_scene_mhx.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io_import_scene_mhx.py b/io_import_scene_mhx.py index 62bb72a51..9b4343788 100644 --- a/io_import_scene_mhx.py +++ b/io_import_scene_mhx.py @@ -98,7 +98,7 @@ todo = [] T_EnforceVersion = 0x01 T_Clothes = 0x02 T_HardParents = 0x0 -T_CrashSafe = 0x04 +T_CrashSafe = 0x0 T_Diamond = 0x10 T_Replace = 0x20 @@ -2869,7 +2869,7 @@ from bpy_extras.io_utils import ImportHelper MhxBoolProps = [ ("enforce", "Enforce version", "Only accept MHX files of correct version", T_EnforceVersion), - ("crash_safe", "Crash-safe", "Disable features that have caused Blender crashes", T_CrashSafe), + #("crash_safe", "Crash-safe", "Disable features that have caused Blender crashes", T_CrashSafe), ("mesh", "Mesh", "Use main mesh", T_Mesh), ("proxy", "Proxies", "Use proxies", T_Proxy), ("armature", "Armature", "Use armature", T_Armature), -- GitLab