[TechDraw] Fix the projection type combobox and align all references to First angle and Third angle (#24762)

This commit is contained in:
Syres916
2025-10-26 22:31:44 +00:00
committed by GitHub
parent 4718c46170
commit e95d3cbdc9
7 changed files with 24 additions and 24 deletions

View File

@@ -342,12 +342,12 @@ for ProjectionGroups</string>
</property>
<item>
<property name="text">
<string>First-angle</string>
<string>First angle</string>
</property>
</item>
<item>
<property name="text">
<string>Third-angle</string>
<string>Third angle</string>
</property>
</item>
<item>

View File

@@ -633,11 +633,11 @@ void TaskProjGroup::changeEvent(QEvent *event)
const char * TaskProjGroup::viewChkIndexToCStr(int index)
{
// Third Angle: FTL T FTRight
// Third angle: FTL T FTRight
// L F Right Rear
// FBL B FBRight
//
// First Angle: FBRight B FBL
// First angle: FBRight B FBL
// Right F L Rear
// FTRight T FTL
@@ -692,10 +692,10 @@ bool TaskProjGroup::useThirdAngle()
return thirdAngle;
}
if (multiView->usedProjectionType().isValue("Third Angle")) {
if (multiView->usedProjectionType().isValue("Third angle")) {
thirdAngle = true;
} else if (multiView->usedProjectionType().isValue("Default") &&
page->ProjectionType.isValue("Third Angle")) {
page->ProjectionType.isValue("Third angle")) {
thirdAngle = true;
}
return thirdAngle;