From 3391be473362211a4a051ec8f1a117b2c7df04f2 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Mon, 16 Sep 2019 11:56:52 +0200 Subject: [PATCH] Call update_config_values after deleting of a overridden option --- src/slic3r/GUI/GUI_ObjectSettings.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/slic3r/GUI/GUI_ObjectSettings.cpp b/src/slic3r/GUI/GUI_ObjectSettings.cpp index adb54961786..58daec8b7aa 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; };