FIX: change the max length of plate name from 40 to 250

from github user:https://github.com/bambulab/BambuStudio/issues/2119#event-10014273957

Change-Id: I3db2db78f7c870864123789d8ac5eadc31702944
This commit is contained in:
zhou.xu 2023-08-07 10:30:34 +08:00 committed by Lane.Wei
parent a549553960
commit ef805f0c5a
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ PlateNameEditDialog::PlateNameEditDialog(wxWindow *parent, wxWindowID id, const
m_ti_plate_name = new TextInput(this, wxString::FromDouble(0.0), "", "", wxDefaultPosition, wxSize(FromDIP(240), -1), wxTE_PROCESS_ENTER);
top_sizer->Add(plate_name_txt, 0, wxALIGN_CENTER_VERTICAL | wxALIGN_LEFT | wxALL, FromDIP(5));
top_sizer->Add(m_ti_plate_name, 0, wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxALL, FromDIP(5));
m_ti_plate_name->GetTextCtrl()->SetMaxLength(40);
m_ti_plate_name->GetTextCtrl()->SetMaxLength(250);
m_sizer_main->Add(top_sizer, 0, wxEXPAND | wxALL, FromDIP(30));