Fix Belt Tooltip Spacing and Legend Casing

Drop double spaces in the belt tilt tooltips and match the preview legend header to
the "Belt printer" settings group.
This commit is contained in:
Hanif Koh
2026-09-14 17:27:33 +08:00
parent 18c08862a8
commit 14cf7861e0
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -4923,7 +4923,7 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv
ImGui::Spacing();
ImGui::Dummy({ window_padding, 0 });
ImGui::SameLine();
ImGui::TextColored(ImVec4(0.f, 0.59f, 0.53f, 1.f), "%s", _u8L("Belt Printer").c_str());
ImGui::TextColored(ImVec4(0.f, 0.59f, 0.53f, 1.f), "%s", _u8L("Belt printer").c_str());
ImGui::Dummy({ window_padding, 0 });
ImGui::SameLine();
// Checked = show the raw machine-frame G-code (designed/upright view off). Worded to
+2 -2
View File
@@ -5105,7 +5105,7 @@ void TabPrinter::build_fff()
{
Line line = { L("Belt tilt"),
L("Belt tilt axis and angle, applied as a mesh rotation before "
"slicing. Also drives bed rendering and support gravity tilt. "
"slicing. Also drives bed rendering and support gravity tilt. "
"Isometric (no distortion); the back-transform inverts it before "
"the machine-frame remap.") };
line.append_option(belt_og->get_option("belt_slice_rotation"));
@@ -5160,7 +5160,7 @@ void TabPrinter::build_fff()
{
Line line = { L("Machine-frame tilt"),
L("The machine-frame shear (tan) and scale (1/cos) are derived from "
"the belt tilt angle. Enable 'Decouple' to set an independent "
"the belt tilt angle. Enable 'Decouple' to set an independent "
"machine-frame angle when the physical gantry tilt differs from "
"the slicing rotation.") };
line.append_option(mf->get_option("belt_frame_tilt_decouple"));