From 25244e9843b5f7d93aebcc3ca5f0242672fb8f66 Mon Sep 17 00:00:00 2001 From: Nuno Donato Date: Fri, 10 Jun 2016 10:42:13 +0100 Subject: [PATCH] * fix messages when modifying on switching the active axis (cherry picked from commit a7131883888b31f972025a248c16e8ea1e02f09a) --- tools/editor/plugins/spatial_editor_plugin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/editor/plugins/spatial_editor_plugin.cpp b/tools/editor/plugins/spatial_editor_plugin.cpp index f7de71187de..d982be029fb 100644 --- a/tools/editor/plugins/spatial_editor_plugin.cpp +++ b/tools/editor/plugins/spatial_editor_plugin.cpp @@ -996,26 +996,26 @@ void SpatialEditorViewport::_sinput(const InputEvent &p_event) { case TRANSFORM_VIEW: { _edit.plane=TRANSFORM_X_AXIS; - set_message("View Plane Transform.",2); + set_message("X-Axis Transform.",2); name=""; _update_name(); } break; case TRANSFORM_X_AXIS: { _edit.plane=TRANSFORM_Y_AXIS; - set_message("X-Axis Transform.",2); + set_message("Y-Axis Transform.",2); } break; case TRANSFORM_Y_AXIS: { _edit.plane=TRANSFORM_Z_AXIS; - set_message("Y-Axis Transform.",2); + set_message("Z-Axis Transform.",2); } break; case TRANSFORM_Z_AXIS: { _edit.plane=TRANSFORM_VIEW; - set_message("Z-Axis Transform.",2); + set_message("View Plane Transform.",2); } break; }