diff options
author | groud <gilles.roudiere@gmail.com> | 2018-09-11 20:58:01 +0200 |
---|---|---|
committer | groud <gilles.roudiere@gmail.com> | 2018-09-11 20:58:01 +0200 |
commit | 9dc81e6ca7c06ea08c600102d5091c39c9f286c2 (patch) | |
tree | 90f61c5c3eb69a20fe66f98f46f72265329eac22 /editor | |
parent | 10db0421db93f7b57ae05e067f27dba6e09e4761 (diff) |
Fix 2D selection
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/canvas_item_editor_plugin.cpp | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp index fbf4671165..5d7ae1beee 100644 --- a/editor/plugins/canvas_item_editor_plugin.cpp +++ b/editor/plugins/canvas_item_editor_plugin.cpp @@ -1858,22 +1858,9 @@ bool CanvasItemEditor::_gui_input_select(const Ref<InputEvent> &p_event) { // Retrieve the bones _get_bones_at_pos(click, selection); - for (int i = 0; i < selection.size(); i++) { - if (editor_selection->is_selected(selection[i].item)) { - // Drag the node(s) if requested - List<CanvasItem *> selection = _get_edited_canvas_items(); - - drag_type = DRAG_MOVE; - drag_selection = selection; - drag_from = click; - _save_canvas_item_state(drag_selection); - - return true; - } - } - - if (!selection.empty()) + if (!selection.empty()) { canvas_item = selection[0].item; + } if (!canvas_item) { // Start a box selection |