From 8aec665bdcc484742615bf8e44c95e87face3507 Mon Sep 17 00:00:00 2001 From: shankinsMechEng <134628078+shankinsMechEng@users.noreply.github.com> Date: Thu, 19 Dec 2024 11:59:15 -0700 Subject: [PATCH] fixed minor bug with opening a saved bulk forming simulation file --- python/FIERRO-GUI/fierro_gui/Save_Load.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/FIERRO-GUI/fierro_gui/Save_Load.py b/python/FIERRO-GUI/fierro_gui/Save_Load.py index 332c875d6..cd95a198e 100644 --- a/python/FIERRO-GUI/fierro_gui/Save_Load.py +++ b/python/FIERRO-GUI/fierro_gui/Save_Load.py @@ -16,6 +16,9 @@ def Save(self): "labels": {}, "checkboxes": {}} + # change material definition of bulk forming solver to custom before saving + self.INMaterialDefinition.setCurrentIndex(0) + # Save widget states for attr_name, attr_value in self.__dict__.items(): if isinstance(attr_value, QComboBox):