region selector: add option to show/hide coord aim lines

This commit is contained in:
end-4
2025-10-23 00:05:19 +02:00
parent b35ef90916
commit 7515f77846
3 changed files with 23 additions and 1 deletions
@@ -626,6 +626,19 @@ ContentPage {
}
}
ContentSubsection {
title: Translation.tr("Rectangular selection")
ConfigSwitch {
buttonIcon: "point_scan"
text: Translation.tr("Show aim lines")
checked: Config.options.regionSelector.rect.showAimLines
onCheckedChanged: {
Config.options.regionSelector.rect.showAimLines = checked;
}
}
}
ContentSubsection {
title: Translation.tr("Circle selection")