Skip to content

Commit

Permalink
clarify arrange options parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
ericbjones authored Jul 10, 2024
1 parent 47cdd7d commit 71a671b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/slic3r/GUI/GLCanvas3D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4867,7 +4867,7 @@ bool GLCanvas3D::_render_arrange_menu(float pos_x)
settings_changed = true;
}

if (imgui->slider_float(_L("Spacing from bed"), &settings.distance_from_bed, dist_bed_min, 100.0f, "%5.2f") || dist_bed_min > settings.distance_from_bed) {
if (imgui->slider_float(_L("Spacing from bed edge"), &settings.distance_from_bed, dist_bed_min, 100.0f, "%5.2f") || dist_bed_min > settings.distance_from_bed) {
settings.distance_from_bed = std::max(dist_bed_min, settings.distance_from_bed);
settings_out.distance_from_bed = settings.distance_from_bed;
appcfg->set("arrange", dist_bed_key.c_str(), float_to_string_decimal_point(settings_out.distance_from_bed));
Expand Down

0 comments on commit 71a671b

Please sign in to comment.