From 15b2522ed9266c3f4cc9be55376b148e44062a2f Mon Sep 17 00:00:00 2001 From: YuSanka Date: Wed, 14 Mar 2018 15:10:16 +0100 Subject: [PATCH] Update "fill_density" to initial preset value instead of to 40% --- xs/src/slic3r/GUI/Tab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/slic3r/GUI/Tab.cpp b/xs/src/slic3r/GUI/Tab.cpp index 858eb8bcfd..212b451e40 100644 --- a/xs/src/slic3r/GUI/Tab.cpp +++ b/xs/src/slic3r/GUI/Tab.cpp @@ -737,7 +737,7 @@ void TabPrint::update() fill_density = 100; } else - fill_density = 40; + fill_density = m_presets->get_selected_preset().config.option("fill_density")->value; new_conf.set_key_value("fill_density", new ConfigOptionPercent(fill_density)); load_config(new_conf); on_value_change("fill_density", fill_density);