Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 34556da

Browse files
committed
Merge pull request #4217 from adobe/jeff/increase-upper-fileindex-limit
[FOR DISCUSSION] Fixes client issue # 4178
2 parents adc9722 + 53e4166 commit 34556da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/project/FileIndexManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ define(function (require, exports, module) {
256256
// or scanning additional directories once a max has been hit. Also notify the
257257
// user once via a dialog. This limit could be increased
258258
// if files were indexed in a worker thread so scanning didn't block the UI
259-
if (state.fileCount > 10000) {
259+
if (state.fileCount > 16000) {
260260
if (!state.maxFilesHit) {
261261
state.maxFilesHit = true;
262262
if (!_maxFileDialogDisplayed) {

0 commit comments

Comments
 (0)