mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-27 10:51:22 +00:00
Add PA-profile sharing toggle to the device send dialog
This commit is contained in:
@@ -274,6 +274,7 @@ void PrintJob::process(Ctl &ctl)
|
||||
params.auto_bed_leveling = this->auto_bed_leveling;
|
||||
params.auto_flow_cali = this->auto_flow_cali;
|
||||
params.auto_offset_cali = this->auto_offset_cali;
|
||||
params.extruder_cali_manual_mode = this->extruder_cali_manual_mode;
|
||||
params.task_ext_change_assist = this->task_ext_change_assist;
|
||||
// Allow disabling the eMMC print path via AppConfig. Plugin 02.03.00.62's
|
||||
// eMMC tunnel code hangs indefinitely at the upload phase with some
|
||||
|
||||
@@ -92,11 +92,13 @@ public:
|
||||
int auto_bed_leveling{0};
|
||||
int auto_flow_cali{0};
|
||||
int auto_offset_cali{0};
|
||||
int extruder_cali_manual_mode{-1};
|
||||
|
||||
void set_print_config(std::string bed_type, bool bed_leveling, bool flow_cali, bool vabration_cali, bool record_timelapse, bool layer_inspect, bool ext_change_assist,
|
||||
int auto_bed_levelingt,
|
||||
int auto_flow_calit,
|
||||
int auto_offset_calit)
|
||||
int auto_offset_calit,
|
||||
int extruder_cali_manual_modet = -1)
|
||||
{
|
||||
task_bed_type = bed_type;
|
||||
task_bed_leveling = bed_leveling;
|
||||
@@ -109,6 +111,7 @@ public:
|
||||
auto_bed_leveling = auto_bed_levelingt;
|
||||
auto_flow_cali = auto_flow_calit;
|
||||
auto_offset_cali = auto_offset_calit;
|
||||
extruder_cali_manual_mode = extruder_cali_manual_modet;
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user