From 50fa4d3d9848c8b9bc5ba3d2972cd472a6fb6284 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Tue, 24 May 2022 16:08:16 +0200 Subject: [PATCH] Fixed a bug, when "Detach from system preset" button wasn't disappears after click on it and detaching of the profile from system profile --- src/slic3r/GUI/Tab.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 763c23caca..732e03dec4 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -3680,6 +3680,9 @@ void Tab::save_preset(std::string name /*= ""*/, bool detach) // update preset comboboxes in DiffPresetDlg wxGetApp().mainframe->diff_dialog.update_presets(m_type); + + if (detach) + update_description_lines(); } // Called for a currently selected preset.