From ee6f7faa80d55fbbf62cbfaf22f9cf176e643190 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Thu, 2 Nov 2023 15:16:59 +0100 Subject: [PATCH] Follow-up 8627c350 - Fixed minimal sidebar width after re-scaling of the application. --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index bf53d8c32c..5912b90a86 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -1163,7 +1163,7 @@ void Sidebar::update_reslice_btn_tooltip() const void Sidebar::msw_rescale() { - SetMinSize(wxSize(40 * wxGetApp().em_unit(), -1)); + SetMinSize(wxSize(42 * wxGetApp().em_unit(), -1)); for (PlaterPresetComboBox* combo : std::vector { p->combo_print, p->combo_sla_print,