Skip to content

Commit

Permalink
clarify arrange options parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Jones committed Jul 10, 2024
1 parent fd02400 commit 977b7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/slic3r/GUI/ArrangeSettingsDialogImgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void ArrangeSettingsDialogImgui::render(float pos_x, float pos_y)
m_db->set_distance_from_objects(settings.d_obj);
}

if (m_imgui->slider_float(_L("Spacing from bed"), &settings.d_bed,
if (m_imgui->slider_float(_L("Spacing from bed edge"), &settings.d_bed,
dbed_min, dbed_max, "%5.2f")) {
settings.d_bed = std::max(dbed_min, settings.d_bed);
m_db->set_distance_from_bed(settings.d_bed);
Expand Down

0 comments on commit 977b7e7

Please sign in to comment.