fixed an issue where there is no edited function but user double clicks on an available functions
This commit is contained in:
parent
a2cf1c3d04
commit
e0e0d8b229
@ -1099,6 +1099,9 @@ void VisualScriptEditor::_expression_text_changed(const String &p_text, int p_id
|
||||
|
||||
void VisualScriptEditor::_available_node_doubleclicked() {
|
||||
|
||||
if (edited_func == String())
|
||||
return;
|
||||
|
||||
TreeItem *item = nodes->get_selected();
|
||||
|
||||
if (!item)
|
||||
@ -1107,7 +1110,6 @@ void VisualScriptEditor::_available_node_doubleclicked() {
|
||||
String which = item->get_metadata(0);
|
||||
if (which == String())
|
||||
return;
|
||||
|
||||
Vector2 ofs = graph->get_scroll_ofs() + graph->get_size() * 0.5;
|
||||
|
||||
if (graph->is_using_snap()) {
|
||||
|
Loading…
Reference in New Issue
Block a user