mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-15 10:47:50 -06:00
FIX: linux darkmode text display
Change-Id: I2c935647669dd9743cf4a230ef21e48ea4b92eb8
This commit is contained in:
parent
59b6b59a9a
commit
4d8ad0003b
17 changed files with 249 additions and 115 deletions
|
@ -275,6 +275,22 @@ void CalibrationWizard::back_preset_info(MachineObject *obj, bool cali_finish)
|
|||
wxGetApp().app_config->save_printer_cali_infos(printer_cali_info);
|
||||
}
|
||||
|
||||
void CalibrationWizard::msw_rescale()
|
||||
{
|
||||
for (int i = 0; i < m_page_steps.size(); i++) {
|
||||
if (m_page_steps[i]->page)
|
||||
m_page_steps[i]->page->msw_rescale();
|
||||
}
|
||||
}
|
||||
|
||||
void CalibrationWizard::on_sys_color_changed()
|
||||
{
|
||||
for (int i = 0; i < m_page_steps.size(); i++) {
|
||||
if (m_page_steps[i]->page)
|
||||
m_page_steps[i]->page->on_sys_color_changed();
|
||||
}
|
||||
}
|
||||
|
||||
void CalibrationWizard::on_cali_go_home()
|
||||
{
|
||||
// can go home? confirm to continue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue