1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Increase threshold for displaying scene group update progress

This commit is contained in:
kobewi
2024-07-21 19:45:09 +02:00
parent e25f3c0d38
commit 8f3d66eef1

View File

@@ -1888,7 +1888,7 @@ void EditorFileSystem::_update_scene_groups() {
}
EditorProgress *ep = nullptr;
if (update_scene_paths.size() > 1) {
if (update_scene_paths.size() > 20) {
ep = memnew(EditorProgress("update_scene_groups", TTR("Update Scene Groups"), update_scene_paths.size()));
}
int step_count = 0;