From c8a53a219a6b1e6f9dd9e8a37d63fd255ddb57e1 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Fri, 27 Mar 2026 17:23:44 +0800 Subject: [PATCH] fix split button separator color in light mode on macOS --- src/slic3r/GUI/MainFrame.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index 775c2aeed2..4e28c43e7f 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -1804,6 +1804,8 @@ wxBoxSizer* MainFrame::create_side_tools() auto slice_panel = new wxPanel(this,wxID_ANY,wxDefaultPosition,wxDefaultSize); auto print_panel = new wxPanel(this,wxID_ANY,wxDefaultPosition,wxDefaultSize); + slice_panel->SetBackgroundColour(wxColour("#3B4446")); + print_panel->SetBackgroundColour(wxColour("#3B4446")); m_slice_btn = new SideButton(slice_panel, _L("Slice plate"), ""); m_slice_option_btn = new SideButton(slice_panel, "", "sidebutton_dropdown", 0, 14);