diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-09-22 08:29:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-22 08:29:24 +0200 |
commit | 8b31993ef694b8ef62df0dd876d0c462ae10a11f (patch) | |
tree | 5fdc49d6852e0ebff1ed6209ae733cd416d34f43 /editor | |
parent | c1e6c2c49a7a2c05649d79733e7edda382aa92df (diff) | |
parent | 1032c8535b48f4cbfad12b93f4ece2503b190bf9 (diff) |
Merge pull request #52921 from timothyqiu/view-name-typo
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/node_3d_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/node_3d_editor_plugin.cpp b/editor/plugins/node_3d_editor_plugin.cpp index cae8df1193..231c5c4f72 100644 --- a/editor/plugins/node_3d_editor_plugin.cpp +++ b/editor/plugins/node_3d_editor_plugin.cpp @@ -818,7 +818,7 @@ void Node3DEditorViewport::_update_name() { if (orthogonal) { name = TTR("Left Orthogonal"); } else { - name = TTR("Right Perspective"); + name = TTR("Left Perspective"); } } break; case VIEW_TYPE_RIGHT: { |