From 4c2183bf2326b94020fd52bc03833d76ee6ea082 Mon Sep 17 00:00:00 2001 From: marynate Date: Thu, 3 Apr 2014 01:50:20 +0800 Subject: [PATCH] Use shift for control point in Paht2D editor (to be consistent with Path editor) --- tools/editor/plugins/path_2d_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/editor/plugins/path_2d_editor_plugin.cpp b/tools/editor/plugins/path_2d_editor_plugin.cpp index 341a17ab259..a0b96f14c82 100644 --- a/tools/editor/plugins/path_2d_editor_plugin.cpp +++ b/tools/editor/plugins/path_2d_editor_plugin.cpp @@ -115,7 +115,7 @@ bool Path2DEditor::forward_input_event(const InputEvent& p_event) { Point2 p = xform.xform( curve->get_point_pos(i) ); if (gpoint.distance_to(p) < grab_treshold ) { - if (!mb.mod.control) { + if (!mb.mod.shift) { action=ACTION_MOVING_POINT; action_point=i;