diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-07-17 09:55:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-17 09:55:22 +0200 |
commit | 8abc59b83cdde7602a3fbafaa6173bed3caa759b (patch) | |
tree | 655569d15393b40e57c2a1063d691a659e01bb3d | |
parent | fabed73005f11c1c188ea315a92bbbcd24c67892 (diff) | |
parent | d4bed7586d91aaffbec7c9a4d10a3d82c5b741a0 (diff) |
Merge pull request #30626 from creikey/fix-anchor-helpers
Lower priority of anchor helper input
-rw-r--r-- | editor/plugins/canvas_item_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp index 915fc5ba4c..d4eab888cc 100644 --- a/editor/plugins/canvas_item_editor_plugin.cpp +++ b/editor/plugins/canvas_item_editor_plugin.cpp @@ -2246,8 +2246,6 @@ void CanvasItemEditor::_gui_input_viewport(const Ref<InputEvent> &p_event) { //printf("Plugin\n"); } else if ((accepted = _gui_input_open_scene_on_double_click(p_event))) { //printf("Open scene on double click\n"); - } else if ((accepted = _gui_input_anchors(p_event))) { - //printf("Anchors\n"); } else if ((accepted = _gui_input_scale(p_event))) { //printf("Set scale\n"); } else if ((accepted = _gui_input_pivot(p_event))) { @@ -2258,6 +2256,8 @@ void CanvasItemEditor::_gui_input_viewport(const Ref<InputEvent> &p_event) { //printf("Rotate\n"); } else if ((accepted = _gui_input_move(p_event))) { //printf("Move\n"); + } else if ((accepted = _gui_input_anchors(p_event))) { + //printf("Anchors\n"); } else if ((accepted = _gui_input_select(p_event))) { //printf("Selection\n"); } else { |