diff options
author | kit <kitbdev@gmail.com> | 2024-06-24 11:56:46 -0400 |
---|---|---|
committer | kit <kitbdev@gmail.com> | 2024-06-24 11:56:46 -0400 |
commit | da55b6a01c80dae0cf28e90cfaceb000186cd7c5 (patch) | |
tree | 428b2f9b5212b974b611bb347a2a3796589b09fd /editor/editor_node.cpp | |
parent | e78dc83ee8fc327a4586db0dde576bbefc2b2f8d (diff) | |
download | redot-engine-da55b6a01c80dae0cf28e90cfaceb000186cd7c5.tar.gz |
Fix crash on exit with shader editor
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 1560fe5636..007aa18afa 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -679,6 +679,8 @@ void EditorNode::_notification(int p_what) { } break; case NOTIFICATION_EXIT_TREE: { + singleton->active_plugins.clear(); + if (progress_dialog) { progress_dialog->queue_free(); } |