You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Fixed error when renaming a state in AnimationNodeStateMachine
Fixes #33245
This commit is contained in:
@@ -1117,15 +1117,17 @@ void AnimationNodeStateMachineEditor::_name_edited(const String &p_text) {
|
||||
undo_redo->add_do_method(this, "_update_graph");
|
||||
undo_redo->add_undo_method(this, "_update_graph");
|
||||
undo_redo->commit_action();
|
||||
name_edit->hide();
|
||||
updating = false;
|
||||
|
||||
state_machine_draw->update();
|
||||
|
||||
name_edit->hide();
|
||||
}
|
||||
|
||||
void AnimationNodeStateMachineEditor::_name_edited_focus_out() {
|
||||
|
||||
if (updating)
|
||||
return;
|
||||
|
||||
_name_edited(name_edit->get_text());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user