diff options
author | marynate <mary.w.nate@gmail.com> | 2014-04-03 01:50:20 +0800 |
---|---|---|
committer | marynate <mary.w.nate@gmail.com> | 2014-04-03 16:36:01 +0800 |
commit | 4c2183bf2326b94020fd52bc03833d76ee6ea082 (patch) | |
tree | 00dea7cc1f9ad3ea003f6c0823d105360b3c69b0 /tools/editor | |
parent | f07a377624062caff6290898eff663cb479d277e (diff) |
Use shift for control point in Paht2D editor (to be consistent with Path editor)
Diffstat (limited to 'tools/editor')
-rw-r--r-- | tools/editor/plugins/path_2d_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/path_2d_editor_plugin.cpp b/tools/editor/plugins/path_2d_editor_plugin.cpp index 341a17ab25..a0b96f14c8 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; |