mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 08:23:29 +00:00
Removed underscore from GraphEdit begin/end_node_move signals
This commit is contained in:
parent
ac44344c27
commit
4f4287243c
3 changed files with 12 additions and 12 deletions
|
@ -4783,8 +4783,8 @@ VisualScriptEditor::VisualScriptEditor() {
|
|||
graph->set_v_size_flags(Control::SIZE_EXPAND_FILL);
|
||||
graph->set_anchors_and_margins_preset(Control::PRESET_WIDE);
|
||||
graph->connect("node_selected", callable_mp(this, &VisualScriptEditor::_node_selected));
|
||||
graph->connect("_begin_node_move", callable_mp(this, &VisualScriptEditor::_begin_node_move));
|
||||
graph->connect("_end_node_move", callable_mp(this, &VisualScriptEditor::_end_node_move));
|
||||
graph->connect("begin_node_move", callable_mp(this, &VisualScriptEditor::_begin_node_move));
|
||||
graph->connect("end_node_move", callable_mp(this, &VisualScriptEditor::_end_node_move));
|
||||
graph->connect("delete_nodes_request", callable_mp(this, &VisualScriptEditor::_on_nodes_delete));
|
||||
graph->connect("duplicate_nodes_request", callable_mp(this, &VisualScriptEditor::_on_nodes_duplicate));
|
||||
graph->connect("gui_input", callable_mp(this, &VisualScriptEditor::_graph_gui_input));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue