Skip to content

Commit

Permalink
Merge pull request #94594 from KoBeWi/scenegroups😬😬
Browse files Browse the repository at this point in the history
Increase threshold for displaying scene group update progress
  • Loading branch information
akien-mga committed Jul 22, 2024
2 parents edcf789 + 8f3d66e commit 97be935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/editor_file_system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 97be935

Please sign in to comment.