Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2019-09-16 12:56:52 +0300
committerYuSanka <yusanka@gmail.com>2019-09-16 13:05:56 +0300
commit13bde53955a9cfc7e039f13bd31c2eab3aa113ee (patch)
treefed2ad426c710b4d84f65633f6da9a17dd939bef /src/slic3r/GUI/GUI_ObjectSettings.cpp
parenta12e6a7bde8c614257beb796241312b5eba657c7 (diff)
Call update_config_values after deleting of a overridden option
Diffstat (limited to 'src/slic3r/GUI/GUI_ObjectSettings.cpp')
-rw-r--r--src/slic3r/GUI/GUI_ObjectSettings.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/slic3r/GUI/GUI_ObjectSettings.cpp b/src/slic3r/GUI/GUI_ObjectSettings.cpp
index adb549617..58daec8b7 100644
--- a/src/slic3r/GUI/GUI_ObjectSettings.cpp
+++ b/src/slic3r/GUI/GUI_ObjectSettings.cpp
@@ -106,6 +106,12 @@ bool ObjectSettings::update_settings_list()
update_settings_list();
m_parent->Layout();
});
+
+ /* Check overriden options list after deleting.
+ * Some options couldn't be deleted because of another one.
+ * Like, we couldn't delete fill pattern, if fill density is set to 100%
+ */
+ update_config_values(config);
});
return btn;
};