From 6247ec1e83074642338891d358b5d709b6e00893 Mon Sep 17 00:00:00 2001 From: "fei2.fang" Date: Thu, 3 Jul 2025 17:37:45 +0800 Subject: [PATCH] FIX: Revert unintended font size change in official picker dialog jira: STUDIO-13152 Change-Id: Ic3f26359a089a4cd1369fd2f06f450c4ae540634 (cherry picked from commit fdfd5fd479573f6f7871600f5a9b442cb13c8c68) --- src/slic3r/GUI/FilamentPickerDialog.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/slic3r/GUI/FilamentPickerDialog.cpp b/src/slic3r/GUI/FilamentPickerDialog.cpp index 8240eec33f..d44a288b6f 100644 --- a/src/slic3r/GUI/FilamentPickerDialog.cpp +++ b/src/slic3r/GUI/FilamentPickerDialog.cpp @@ -244,17 +244,12 @@ wxBoxSizer* FilamentPickerDialog::CreateInfoSection() wxFont bold_font = m_label_preview_color->GetFont(); bold_font.SetWeight(wxFONTWEIGHT_BOLD); #ifdef __WXMSW__ - bold_font.SetPointSize(FromDIP(9)); + bold_font.SetPointSize(FromDIP(8)); #endif m_label_preview_color->SetFont(bold_font); m_label_preview_idx->SetFont(bold_font); m_label_preview_type->SetForegroundColour(wxColour(128, 128, 128)); -#ifdef __WXMSW__ - wxFont type_font = m_label_preview_type->GetFont(); - type_font.SetPointSize(FromDIP(8)); - m_label_preview_type->SetFont(type_font); -#endif // Layout with platform-specific spacing #ifdef __WXMSW__