diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 4d7034f61f..dafa3bfdb9 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1275,8 +1275,7 @@ void PrintConfigDef::init_fff_params() def = this->add("relative_bridge_angle", coBool); def->label = L("Relative bridge angle"); def->category = L("Strength"); - def->tooltip = L("When enabled, the bridge angle values are added to the automatically calculated bridge direction instead of overriding it.\n" - "Recommended to add a small angle (<10°) to improve bridge covering in closed shapes."); + def->tooltip = L("When enabled, the bridge angle values are added to the automatically calculated bridge direction instead of overriding it."); def->mode = comAdvanced; def->set_default_value(new ConfigOptionBool(false)); diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 5955b8a3e3..e5d8d793ea 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2500,7 +2500,7 @@ void TabPrint::build() optgroup->append_single_option_line("extra_solid_infills", "strength_settings_infill#extra-solid-infill"); optgroup->append_single_option_line("bridge_angle", "strength_settings_advanced#bridge-infill-direction"); optgroup->append_single_option_line("internal_bridge_angle", "strength_settings_advanced#bridge-infill-direction"); // ORCA: Internal bridge angle override - optgroup->append_single_option_line("relative_bridge_angle", "strength_settings_advanced#bridge-infill-direction"); + optgroup->append_single_option_line("relative_bridge_angle", "strength_settings_advanced#relative-bridge-angle"); optgroup->append_single_option_line("minimum_sparse_infill_area", "strength_settings_advanced#minimum-sparse-infill-threshold"); optgroup->append_single_option_line("infill_combination", "strength_settings_advanced#infill-combination"); optgroup->append_single_option_line("infill_combination_max_layer_height", "strength_settings_advanced#max-layer-height");