From 59fec2f4d0eb634ea33d29de564d4138c641c202 Mon Sep 17 00:00:00 2001 From: "xin.zhang" Date: Mon, 10 Mar 2025 18:23:28 +0800 Subject: [PATCH] FIX: update the wrap width jira: [STUDIO-10781] Change-Id: I8cbb893f235a47a9ed62e43af8c00dc1ba1f6454 (cherry picked from commit d89303c9fee19eadba9acc615da09f446da25354) --- src/slic3r/GUI/PrintOptionsDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/PrintOptionsDialog.cpp b/src/slic3r/GUI/PrintOptionsDialog.cpp index 8fdfcc2f7d..de02c7c71e 100644 --- a/src/slic3r/GUI/PrintOptionsDialog.cpp +++ b/src/slic3r/GUI/PrintOptionsDialog.cpp @@ -414,7 +414,7 @@ wxBoxSizer* PrintOptionsDialog::create_settings_group(wxWindow* parent) text_save_remote_print_file_to_storage_explain = new Label(parent, _L("Save the printing files initiated from Bambu Studio, Bambu Handy and MakerWorld on External Storage")); text_save_remote_print_file_to_storage_explain->SetForegroundColour(STATIC_TEXT_EXPLAIN_COL); text_save_remote_print_file_to_storage_explain->SetFont(Label::Body_14); - text_save_remote_print_file_to_storage_explain->Wrap(300); + text_save_remote_print_file_to_storage_explain->Wrap(FromDIP(260)); sizer->Add(0, 0, 0, wxTOP, FromDIP(15)); sizer->Add(line_sizer, 0, wxEXPAND | wxLEFT | wxRIGHT, FromDIP(18)); sizer->Add(text_save_remote_print_file_to_storage_explain, 0, wxLEFT, FromDIP(58));