From 1e1221216a204d1f7f8a222e8a0fb400978589a5 Mon Sep 17 00:00:00 2001 From: "chunmao.guo" Date: Mon, 23 Sep 2024 10:09:41 +0800 Subject: [PATCH] FIX: update toggle_options after on_preset_loaded Change-Id: I4e4b4f21f50bb6d844c6166cac71f6a9f053e93f Jira: none --- src/slic3r/GUI/Tab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 6d6a75c4a..6b87e1639 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -4273,7 +4273,6 @@ void Tab::load_current_preset() update_btns_enabling(); - update(); if (m_type == Slic3r::Preset::TYPE_PRINTER) { // For the printer profile, generate the extruder pages. if (preset.printer_technology() == ptFFF) @@ -4281,6 +4280,7 @@ void Tab::load_current_preset() else wxGetApp().obj_list()->update_objects_list_filament_column(1); } + update(); // Reload preset pages with the new configuration values. reload_config();