Skip to content

Commit

Permalink
Fixes in phrases
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmatena committed Nov 10, 2023
1 parent 7d5a116 commit 32c80a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions src/libslic3r/PrintConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2335,8 +2335,7 @@ void PrintConfigDef::init_fff_params()

def = this->add("travel_slope", coFloats);
def->label = L("Ramping slope angle");
def->tooltip = L("During travel there is a part of the travel that is sloped upwards. "
"This number indicates the slope of the travel as mm raised per mm traveled in percent.");
def->tooltip = L("Slope of the ramp in the initial phase of the travel.");
def->sidetext = L("°");
def->min = 0;
def->max = 90;
Expand All @@ -2346,6 +2345,7 @@ void PrintConfigDef::init_fff_params()
def = this->add("travel_ramping_lift", coBools);
def->label = L("Use ramping lift");
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.");
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBools{ false });
Expand All @@ -2362,15 +2362,14 @@ void PrintConfigDef::init_fff_params()

def = this->add("travel_lift_before_obstacle", coBools);
def->label = L("Steeper ramp before obstacles");
def->tooltip = L("If enabled, enables dynamic tuning of the 'travel slope end' parameter. "
"If there is an obstacle in the travel path, the 'travel slope end' is set to the obstacle distance, "
"effectively ensuring that the print head will travel in 'lift height' above the obstacle.");
def->tooltip = L("If enabled, PrusaSlicer detects obstacles along the travel path and makes the slope steeper "
"in case an obstacle might be hit during the initial phase of the travel.");
def->mode = comExpert;
def->set_default_value(new ConfigOptionBools{false});

def = this->add("retract_lift", coFloats);
def->label = L("Lift height");
def->tooltip = L("TODO");
def->tooltip = L("Lift height applied before travel.");
def->sidetext = L("mm");
def->min = 0;
def->max_literal = 1000;
Expand Down
2 changes: 1 addition & 1 deletion src/slic3r/GUI/GUI_App.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ void GUI_App::init_app_config()
// SetAppDisplayName(SLIC3R_APP_NAME);

// 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"
// Mac : "~/Library/Application Support/Slic3r"

Expand Down

0 comments on commit 32c80a8

Please sign in to comment.