Merge pull request #34107 from codecustard/fix-vseditor-add-node-pos

Fixes wrong position when adding node in VS editor
This commit is contained in:
Rémi Verschelde 2019-12-05 06:57:09 +01:00 committed by GitHub
commit 129a22cd90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3464,6 +3464,7 @@ void VisualScriptEditor::_selected_connect_node(const String &p_text, const Stri
ofs = ofs.snapped(Vector2(snap, snap));
}
ofs /= EDSCALE;
ofs /= graph->get_zoom();
Set<int> vn;