mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-10-02 17:13:18 +08:00
ENH:Hide multi disk switching
jira:[for demo] Change-Id: I4cbfde15ec2b6f7e8aa68e8654ebea0e9cb09b9c
This commit is contained in:
parent
5dce0ebc06
commit
370be63709
@ -1112,10 +1112,12 @@ SelectMachineDialog::SelectMachineDialog(Plater *plater)
|
|||||||
|
|
||||||
auto last_plate_sizer = new wxBoxSizer(wxVERTICAL);
|
auto last_plate_sizer = new wxBoxSizer(wxVERTICAL);
|
||||||
m_bitmap_last_plate = new wxStaticBitmap(m_basic_panel, wxID_ANY, create_scaled_bitmap("go_last_plate", this, 25), wxDefaultPosition, wxSize(FromDIP(25), FromDIP(25)), 0);
|
m_bitmap_last_plate = new wxStaticBitmap(m_basic_panel, wxID_ANY, create_scaled_bitmap("go_last_plate", this, 25), wxDefaultPosition, wxSize(FromDIP(25), FromDIP(25)), 0);
|
||||||
|
m_bitmap_last_plate->Hide();
|
||||||
last_plate_sizer->Add(m_bitmap_last_plate, 0, wxALIGN_CENTER, 0);
|
last_plate_sizer->Add(m_bitmap_last_plate, 0, wxALIGN_CENTER, 0);
|
||||||
|
|
||||||
auto next_plate_sizer = new wxBoxSizer(wxVERTICAL);
|
auto next_plate_sizer = new wxBoxSizer(wxVERTICAL);
|
||||||
m_bitmap_next_plate = new wxStaticBitmap(m_basic_panel, wxID_ANY, create_scaled_bitmap("go_next_plate", this, 25), wxDefaultPosition, wxSize(FromDIP(25), FromDIP(25)), 0);
|
m_bitmap_next_plate = new wxStaticBitmap(m_basic_panel, wxID_ANY, create_scaled_bitmap("go_next_plate", this, 25), wxDefaultPosition, wxSize(FromDIP(25), FromDIP(25)), 0);
|
||||||
|
m_bitmap_next_plate->Hide();
|
||||||
next_plate_sizer->Add(m_bitmap_next_plate, 0, wxALIGN_CENTER, 0);
|
next_plate_sizer->Add(m_bitmap_next_plate, 0, wxALIGN_CENTER, 0);
|
||||||
|
|
||||||
sizer_rename->Add(m_rename_switch_panel, 0, wxALIGN_CENTER, 0);
|
sizer_rename->Add(m_rename_switch_panel, 0, wxALIGN_CENTER, 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user