ENH:N1,send printing pop_up,printing options displayed incorrectly

Sending the printing window, several printing options are displayed in the wrong position

Jira:STUDIO-4045
Change-Id: I5bf5b4295b015020eb38273ed13193d74f43c65d
This commit is contained in:
hu.wang 2023-08-23 16:22:35 +08:00 committed by Lane.Wei
parent d98e788847
commit 68e2cb6ca2
1 changed files with 2 additions and 1 deletions

View File

@ -1370,7 +1370,7 @@ SelectMachineDialog::SelectMachineDialog(Plater *plater)
m_sizer_main->Add(0, 0, 0, wxEXPAND | wxTOP, FromDIP(11));
m_sizer_main->Add(m_statictext_printer_msg, 0, wxALIGN_CENTER_HORIZONTAL, 0);
m_sizer_main->Add(0, 1, 0, wxTOP, FromDIP(16));
m_sizer_main->Add(m_sizer_select, 0, wxALIGN_CENTER_HORIZONTAL, 0);
m_sizer_main->Add(m_sizer_select, 0, wxALIGN_CENTER_HORIZONTAL | wxLEFT | wxRIGHT, FromDIP(30));
m_sizer_main->Add(0, 1, 0, wxTOP, FromDIP(10));
m_sizer_main->Add(m_line_schedule, 0, wxEXPAND | wxLEFT | wxRIGHT, FromDIP(30));
m_sizer_main->Add(m_simplebook, 0, wxALIGN_CENTER_HORIZONTAL, 0);
@ -1677,6 +1677,7 @@ void SelectMachineDialog::update_select_layout(MachineObject *obj)
}
m_sizer_select->Layout();
Layout();
Fit();
}