summaryrefslogtreecommitdiff
path: root/tools/editor
diff options
context:
space:
mode:
authormarynate <mary.w.nate@gmail.com>2014-04-03 01:50:20 +0800
committermarynate <mary.w.nate@gmail.com>2014-04-03 16:36:01 +0800
commit4c2183bf2326b94020fd52bc03833d76ee6ea082 (patch)
tree00dea7cc1f9ad3ea003f6c0823d105360b3c69b0 /tools/editor
parentf07a377624062caff6290898eff663cb479d277e (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.cpp2
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;