Fix tooltips on mirror checkboxes in sketcher (#27131)

This commit is contained in:
William Skellenger
2026-02-08 05:03:37 -05:00
committed by GitHub
parent 0f23770ad7
commit 5f952812c3

View File

@@ -280,10 +280,25 @@ void DSHSymmetryController::configureToolWidget()
WCheckbox::FirstBox,
QApplication::translate("TaskSketcherTool_c1_symmetry", "Delete original geometries (U)")
);
toolWidget->setCheckboxToolTip(
WCheckbox::FirstBox,
QApplication::translate(
"TaskSketcherTool_c1_symmetry",
"Removes the original geometry and keeps only the mirrored result."
)
);
toolWidget->setCheckboxLabel(
WCheckbox::SecondBox,
QApplication::translate("TaskSketcherTool_c2_symmetry", "Create symmetry constraints (J)")
);
toolWidget->setCheckboxToolTip(
WCheckbox::SecondBox,
QApplication::translate(
"TaskSketcherTool_c2_symmetry",
"Create symmetry constraints between the original and mirrored geometries"
)
);
}
}