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 7b90704d4b
commit 12c515a5df

View file

@ -1371,7 +1371,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, wxEXPAND | wxLEFT | wxRIGHT, FromDIP(40));
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);
@ -1680,6 +1680,7 @@ void SelectMachineDialog::update_select_layout(MachineObject *obj)
}
m_sizer_select->Layout();
Layout();
Fit();
}