mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 00:37:51 -06:00
Finished (?) switching between the FDM / SLA profiles,
fixed an invalidation bug in Print::apply()
This commit is contained in:
parent
7e71aaffd5
commit
75c097010d
6 changed files with 79 additions and 24 deletions
|
@ -642,8 +642,11 @@ void GUI_App::load_current_presets()
|
|||
{
|
||||
PrinterTechnology printer_technology = preset_bundle->printers.get_edited_preset().printer_technology();
|
||||
for (Tab *tab : tabs_list)
|
||||
if (tab->supports_printer_technology(printer_technology))
|
||||
tab->load_current_preset();
|
||||
if (tab->supports_printer_technology(printer_technology)) {
|
||||
if (tab->name() == "printer")
|
||||
static_cast<TabPrinter*>(tab)->update_pages();
|
||||
tab->load_current_preset();
|
||||
}
|
||||
}
|
||||
|
||||
Sidebar& GUI_App::sidebar()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue