Rename Orthogonal to Orthographic everywhere

This commit is contained in:
Ghostkeeper 2019-07-30 17:35:40 +02:00
parent 2ce567ccfe
commit 846cbe79a3
No known key found for this signature in database
GPG key ID: 86BEF881AE2CF276
5 changed files with 24 additions and 6 deletions

View file

@ -58,11 +58,11 @@ Menu
{
text: catalog.i18nc("@action:inmenu menubar:view", "Orthographic")
checkable: true
checked: cameraViewMenu.cameraMode == "orthogonal"
checked: cameraViewMenu.cameraMode == "orthographic"
onTriggered:
{
UM.Preferences.setValue("general/camera_perspective_mode", "orthogonal")
checked = cameraViewMenu.cameraMode == "orthogonal"
UM.Preferences.setValue("general/camera_perspective_mode", "orthographic")
checked = cameraViewMenu.cameraMode == "orthographic"
}
exclusiveGroup: group
}