mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-16 00:05:52 +08:00
Fixes in phrases
This commit is contained in:
parent
7d5a11666c
commit
32c80a8903
@ -2335,8 +2335,7 @@ void PrintConfigDef::init_fff_params()
|
|||||||
|
|
||||||
def = this->add("travel_slope", coFloats);
|
def = this->add("travel_slope", coFloats);
|
||||||
def->label = L("Ramping slope angle");
|
def->label = L("Ramping slope angle");
|
||||||
def->tooltip = L("During travel there is a part of the travel that is sloped upwards. "
|
def->tooltip = L("Slope of the ramp in the initial phase of the travel.");
|
||||||
"This number indicates the slope of the travel as mm raised per mm traveled in percent.");
|
|
||||||
def->sidetext = L("°");
|
def->sidetext = L("°");
|
||||||
def->min = 0;
|
def->min = 0;
|
||||||
def->max = 90;
|
def->max = 90;
|
||||||
@ -2346,6 +2345,7 @@ void PrintConfigDef::init_fff_params()
|
|||||||
def = this->add("travel_ramping_lift", coBools);
|
def = this->add("travel_ramping_lift", coBools);
|
||||||
def->label = L("Use ramping lift");
|
def->label = L("Use ramping lift");
|
||||||
def->tooltip = L("Generates a ramping lift instead of lifting the extruder directly upwards. "
|
def->tooltip = L("Generates a ramping lift instead of lifting the extruder directly upwards. "
|
||||||
|
"The travel is split into two phases: the ramp and the standard horizontal travel. "
|
||||||
"This option helps reduce stringing.");
|
"This option helps reduce stringing.");
|
||||||
def->mode = comAdvanced;
|
def->mode = comAdvanced;
|
||||||
def->set_default_value(new ConfigOptionBools{ false });
|
def->set_default_value(new ConfigOptionBools{ false });
|
||||||
@ -2362,15 +2362,14 @@ void PrintConfigDef::init_fff_params()
|
|||||||
|
|
||||||
def = this->add("travel_lift_before_obstacle", coBools);
|
def = this->add("travel_lift_before_obstacle", coBools);
|
||||||
def->label = L("Steeper ramp before obstacles");
|
def->label = L("Steeper ramp before obstacles");
|
||||||
def->tooltip = L("If enabled, enables dynamic tuning of the 'travel slope end' parameter. "
|
def->tooltip = L("If enabled, PrusaSlicer detects obstacles along the travel path and makes the slope steeper "
|
||||||
"If there is an obstacle in the travel path, the 'travel slope end' is set to the obstacle distance, "
|
"in case an obstacle might be hit during the initial phase of the travel.");
|
||||||
"effectively ensuring that the print head will travel in 'lift height' above the obstacle.");
|
|
||||||
def->mode = comExpert;
|
def->mode = comExpert;
|
||||||
def->set_default_value(new ConfigOptionBools{false});
|
def->set_default_value(new ConfigOptionBools{false});
|
||||||
|
|
||||||
def = this->add("retract_lift", coFloats);
|
def = this->add("retract_lift", coFloats);
|
||||||
def->label = L("Lift height");
|
def->label = L("Lift height");
|
||||||
def->tooltip = L("TODO");
|
def->tooltip = L("Lift height applied before travel.");
|
||||||
def->sidetext = L("mm");
|
def->sidetext = L("mm");
|
||||||
def->min = 0;
|
def->min = 0;
|
||||||
def->max_literal = 1000;
|
def->max_literal = 1000;
|
||||||
|
@ -936,7 +936,7 @@ void GUI_App::init_app_config()
|
|||||||
// SetAppDisplayName(SLIC3R_APP_NAME);
|
// SetAppDisplayName(SLIC3R_APP_NAME);
|
||||||
|
|
||||||
// Set the Slic3r data directory at the Slic3r XS module.
|
// Set the Slic3r data directory at the Slic3r XS module.
|
||||||
// Unix: ~/ .Slic3r
|
// Unix: ~/ .Slic3rP
|
||||||
// Windows : "C:\Users\username\AppData\Roaming\Slic3r" or "C:\Documents and Settings\username\Application Data\Slic3r"
|
// Windows : "C:\Users\username\AppData\Roaming\Slic3r" or "C:\Documents and Settings\username\Application Data\Slic3r"
|
||||||
// Mac : "~/Library/Application Support/Slic3r"
|
// Mac : "~/Library/Application Support/Slic3r"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user