You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Fixed disconnecting not connected signal
This commit is contained in:
@@ -95,7 +95,9 @@ void EditorDirDialog::_notification(int p_what) {
|
||||
}
|
||||
|
||||
if (p_what == NOTIFICATION_EXIT_TREE) {
|
||||
EditorFileSystem::get_singleton()->disconnect("filesystem_changed", this, "reload");
|
||||
if (EditorFileSystem::get_singleton()->is_connected("filesystem_changed", this, "reload")) {
|
||||
EditorFileSystem::get_singleton()->disconnect("filesystem_changed", this, "reload");
|
||||
}
|
||||
}
|
||||
|
||||
if (p_what == NOTIFICATION_VISIBILITY_CHANGED) {
|
||||
|
||||
Reference in New Issue
Block a user