diff --git a/resources/icons/perimeters_shell.png b/resources/icons/perimeters_shell.png deleted file mode 100644 index 4ab0be5c0..000000000 Binary files a/resources/icons/perimeters_shell.png and /dev/null differ diff --git a/resources/icons/shell.svg b/resources/icons/shell.svg new file mode 100644 index 000000000..ca745af49 --- /dev/null +++ b/resources/icons/shell.svg @@ -0,0 +1,116 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/resources/icons/width.png b/resources/icons/width.png deleted file mode 100644 index c3b50cce3..000000000 Binary files a/resources/icons/width.png and /dev/null differ diff --git a/resources/icons/width.svg b/resources/icons/width.svg new file mode 100644 index 000000000..5bdf6a68a --- /dev/null +++ b/resources/icons/width.svg @@ -0,0 +1,115 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 0a4941c93..5b601f2b5 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -253,7 +253,7 @@ void PrintConfigDef::init_fff_params() def = this->add("brim_ears_max_angle", coFloat); def->label = L("max angle"); - def->tooltip = L("Maximum angle to let a brim ear appear."); + def->tooltip = L("Maximum angle to let a brim ear appear. \nIf set to 0, no brim will be created. \nIf set to ~178, brim will be created on everything but strait sections."); def->sidetext = L("°"); def->min = 0; def->max = 180; diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index d9990f417..f4127cd37 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -1002,7 +1002,7 @@ void TabPrint::build() m_presets = &m_preset_bundle->prints; Line line{ "", "" }; load_initial_data(); - auto page = add_options_page(_(L("Perimeters & shell")), "perimeters_shell.png"); + auto page = add_options_page(_(L("Perimeters & shell")), "shell"); auto optgroup = page->new_optgroup(_(L("Vertical shells"))); optgroup->append_single_option_line("perimeters"); @@ -1196,7 +1196,7 @@ void TabPrint::build() optgroup->append_single_option_line("max_volumetric_extrusion_rate_slope_negative"); #endif /* HAS_PRESSURE_EQUALIZER */ - page = add_options_page(_(L("Width & flow")), "width.png"); + page = add_options_page(_(L("Width & flow")), "width"); optgroup = page->new_optgroup(_(L("Extrusion width"))); optgroup->append_single_option_line("extrusion_width"); optgroup->append_single_option_line("first_layer_extrusion_width");