From 646cd5a2099f4a55b87d778d911c38a97abaaeb6 Mon Sep 17 00:00:00 2001 From: "liz.li" Date: Fri, 21 Jul 2023 16:27:21 +0800 Subject: [PATCH] FIX: dark mode text display Change-Id: I4089509d12180e454c4a052696f46eea66ea4ee0 --- src/slic3r/GUI/CalibrationWizardSavePage.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/CalibrationWizardSavePage.cpp b/src/slic3r/GUI/CalibrationWizardSavePage.cpp index 8b08606da..a093c8030 100644 --- a/src/slic3r/GUI/CalibrationWizardSavePage.cpp +++ b/src/slic3r/GUI/CalibrationWizardSavePage.cpp @@ -860,6 +860,7 @@ void CalibrationFlowX1SavePage::create_page(wxWindow* parent) m_top_sizer->Add(m_step_panel, 0, wxEXPAND, 0); m_complete_text_panel = new wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL); + m_complete_text_panel->SetBackgroundColour(*wxWHITE); m_complete_text_panel->Hide(); wxBoxSizer* complete_text_sizer = new wxBoxSizer(wxVERTICAL); auto complete_text = new Label(m_complete_text_panel, _L("We found the best flow ratio for you"));