Merge pull request #94594 from KoBeWi/scenegroups😬😬

Increase threshold for displaying scene group update progress
This commit is contained in:
Rémi Verschelde 2024-07-22 14:13:08 +02:00
commit 97be935253
No known key found for this signature in database
GPG Key ID: C3336907360768E1

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;