mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-31 14:02:02 +08:00
Fixed default selection for installed vendors
(SPE-2325)
This commit is contained in:
parent
690126f674
commit
de584c3055
@ -3651,6 +3651,9 @@ void ConfigWizard::priv::load_pages_from_archive()
|
||||
{
|
||||
if (PagePrinters* pageFFF = printers.first) {
|
||||
pageFFF->incr_indent();
|
||||
if (!pageFFF->any_selected())
|
||||
pageFFF->printer_pickers[0]->select_one(0, true);// select first printer for them
|
||||
|
||||
pages_fff.push_back(pageFFF);
|
||||
if (!is_primary_printer_page_set) {
|
||||
pageFFF->is_primary_printer_page = true;
|
||||
@ -3660,6 +3663,9 @@ void ConfigWizard::priv::load_pages_from_archive()
|
||||
|
||||
if (PagePrinters* pageSLA = printers.second) {
|
||||
pageSLA->incr_indent();
|
||||
if (!pageSLA->any_selected())
|
||||
pageSLA->printer_pickers[0]->select_one(0, true);// select first printer for them
|
||||
|
||||
pages_msla.push_back(pageSLA);
|
||||
if (!is_primary_printer_page_set) {
|
||||
pageSLA->is_primary_printer_page = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user