From e28a913e89f220389086cb4c2c69cff1b3c777b2 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Wed, 14 Jun 2023 09:46:40 +0200 Subject: [PATCH] Fix for #10800 - Crash on Rename Filament setting (A "Rename" button was visible for system preset) * Follow up 23ffd344 - Added missed visibility update for action buttons. --- 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 70632b543..e4c27abf8 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -467,6 +467,9 @@ void Tab::OnActivate() else { // on first OnActivate call show top sizer m_top_hsizer->ShowItems(true); + // update visibility of action buttons + update_btns_enabling(); + // update visibility of active extruder if (TabFilament* tab = dynamic_cast(this)) tab->update_extruder_combobox(); Layout();