Merge pull request #17347 from Ranoller/patch-1

FIX to broken item select list (zoom and RMB)
This commit is contained in:
Rémi Verschelde 2018-03-09 13:43:23 +01:00 committed by GitHub
commit b842369442
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1615,10 +1615,10 @@ bool CanvasItemEditor::_gui_input_select(const Ref<InputEvent> &p_event) {
if (drag_type == DRAG_NONE) {
if (b.is_valid() &&
((b->get_button_index() == BUTTON_LEFT && b->get_alt() && tool == TOOL_SELECT) ||
((b->get_button_index() == BUTTON_RIGHT && b->get_alt() && tool == TOOL_SELECT) ||
(b->get_button_index() == BUTTON_LEFT && tool == TOOL_LIST_SELECT))) {
// Popup the selection menu list
Point2 click = transform.xform(b->get_position());
Point2 click = transform.affine_inverse().xform(b->get_position());
Node *scene = editor->get_edited_scene();