Removed obsolete Dwarf parametes from FFF Print settings.

This commit is contained in:
bubnikv 2019-03-13 19:21:56 +01:00
parent c7ba650097
commit 1224491cd4
2 changed files with 0 additions and 47 deletions

View file

@ -2195,41 +2195,6 @@ void PrintConfigDef::init_sla_params()
// SLA Printer settings
def = this->add("bed_size_x", coFloat);
def->label = L("Bed size X");
def->sidetext = L("mm");
def->default_value = new ConfigOptionFloat(68.);
def = this->add("bed_size_y", coFloat);
def->label = L("Bed size Y");
def->sidetext = L("mm");
def->default_value = new ConfigOptionFloat(120.);
def = this->add("pixel_width", coInt);
def->label = L("Picture resolution X");
def->sidetext = L("px");
def->min = 1;
def->mode = comExpert;
def->default_value = new ConfigOptionInt(1440);
def = this->add("pixel_height", coInt);
def->label = L("Picture resolution Y");
def->sidetext = L("px");
def->min = 1;
def->default_value = new ConfigOptionInt(2560);
def = this->add("exp_time", coFloat);
def->label = L("Exposure time");
def->sidetext = L("s");
def->min = 1;
def->default_value = new ConfigOptionFloat(8.);
def = this->add("exp_time_first", coFloat);
def->label = L("Exposure time first layers");
def->sidetext = L("s");
def->min = 1;
def->default_value = new ConfigOptionFloat(35.);
def = this->add("display_width", coFloat);
def->label = L("Display width");
def->tooltip = L("Width of the display");

View file

@ -798,12 +798,6 @@ public:
ConfigOptionFloats wiping_volumes_matrix;
ConfigOptionFloats wiping_volumes_extruders;
ConfigOptionFloat z_offset;
ConfigOptionFloat bed_size_x;
ConfigOptionFloat bed_size_y;
ConfigOptionInt pixel_width;
ConfigOptionInt pixel_height;
ConfigOptionFloat exp_time;
ConfigOptionFloat exp_time_first;
protected:
PrintConfig(int) : MachineEnvelopeConfig(1), GCodeConfig(1) {}
@ -876,12 +870,6 @@ protected:
OPT_PTR(wiping_volumes_matrix);
OPT_PTR(wiping_volumes_extruders);
OPT_PTR(z_offset);
OPT_PTR(bed_size_x);
OPT_PTR(bed_size_y);
OPT_PTR(pixel_width);
OPT_PTR(pixel_height);
OPT_PTR(exp_time);
OPT_PTR(exp_time_first);
}
};