mirror of
https://github.com/godotengine/godot.git
synced 2025-10-22 01:13:39 +00:00
Fix duplicate conditions.
This commit is contained in:
parent
a98589a449
commit
d73d8b8d78
2 changed files with 2 additions and 6 deletions
|
@ -2899,9 +2899,8 @@ void VisualScriptEditor::_graph_connected(const String &p_from, int p_from_slot,
|
|||
if (!converted) {
|
||||
undo_redo->add_do_method(script.ptr(), "data_connect", p_from.to_int(), from_port, p_to.to_int(), to_port);
|
||||
undo_redo->add_undo_method(script.ptr(), "data_disconnect", p_from.to_int(), from_port, p_to.to_int(), to_port);
|
||||
}
|
||||
// Update nodes in graph
|
||||
if (!converted) {
|
||||
|
||||
// Update nodes in graph
|
||||
undo_redo->add_do_method(this, "_update_graph", p_from.to_int());
|
||||
undo_redo->add_do_method(this, "_update_graph", p_to.to_int());
|
||||
undo_redo->add_undo_method(this, "_update_graph", p_from.to_int());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue