mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-24 16:48:49 -07:00
FIX:Fix the issue of text wrapping
Change-Id: I360c08e37d58359b30df460df07ed8266ac5dd6a (cherry picked from commit 54a3e4786e11b47111b33a80788a376f0d238daa)
This commit is contained in:
parent
041ca29ab7
commit
9b9e339d15
2 changed files with 4 additions and 4 deletions
|
|
@ -297,7 +297,7 @@ SelectMachineDialog::SelectMachineDialog(Plater *plater)
|
|||
m_sizer_printer->Add(m_comboBox_printer, 0, wxEXPAND, 0);
|
||||
m_sizer_printer->Add(m_button_refresh, 0, wxALL | wxLEFT, FromDIP(5));
|
||||
|
||||
m_text_printer_msg = new wxStaticText(m_basic_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxALIGN_LEFT);
|
||||
m_text_printer_msg = new Label(m_basic_panel);
|
||||
m_text_printer_msg->SetMinSize(wxSize(FromDIP(420), -1));
|
||||
m_text_printer_msg->SetMaxSize(wxSize(FromDIP(420), -1));
|
||||
m_text_printer_msg->SetFont(::Label::Body_13);
|
||||
|
|
@ -421,7 +421,7 @@ SelectMachineDialog::SelectMachineDialog(Plater *plater)
|
|||
|
||||
|
||||
|
||||
m_statictext_ams_msg = new wxStaticText(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxALIGN_LEFT);
|
||||
m_statictext_ams_msg = new Label(this, wxEmptyString);
|
||||
m_statictext_ams_msg->SetMinSize(wxSize(FromDIP(600), -1));
|
||||
m_statictext_ams_msg->SetMaxSize(wxSize(FromDIP(600), -1));
|
||||
m_statictext_ams_msg->SetFont(::Label::Body_13);
|
||||
|
|
|
|||
|
|
@ -259,8 +259,8 @@ protected:
|
|||
Label* m_stext_printer_title{nullptr};
|
||||
Label* m_stext_time{ nullptr };
|
||||
Label* m_stext_weight{ nullptr };
|
||||
wxStaticText* m_statictext_ams_msg{ nullptr };
|
||||
wxStaticText* m_text_printer_msg{ nullptr };
|
||||
Label* m_statictext_ams_msg{ nullptr };
|
||||
Label* m_text_printer_msg{ nullptr };
|
||||
wxStaticText* m_staticText_bed_title{ nullptr };
|
||||
wxStaticText* m_stext_sending{ nullptr };
|
||||
wxStaticText* m_statictext_finish{nullptr};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue