[TD]add preference methods for center marks

This commit is contained in:
wandererfan
2025-11-02 19:29:35 -05:00
committed by Chris Hennes
parent 02bf9b2292
commit cdcc9df517
4 changed files with 15 additions and 3 deletions

View File

@@ -709,3 +709,13 @@ double Preferences::detailSnapRadius()
return getPreferenceGroup("General")->GetFloat("DetailSnapRadius", 0.6);
}
bool Preferences::showCenterMarks()
{
return getPreferenceGroup("Decorations")->GetBool("ShowCenterMarks", false);
}
bool Preferences::printCenterMarks()
{
return getPreferenceGroup("Decorations")->GetBool("PrintCenterMarks", false);
}