Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/vfs/src/loader.rs')
| -rw-r--r-- | crates/vfs/src/loader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/vfs/src/loader.rs b/crates/vfs/src/loader.rs index cdc94751df..e49849d230 100644 --- a/crates/vfs/src/loader.rs +++ b/crates/vfs/src/loader.rs @@ -52,7 +52,7 @@ pub enum Message { /// The total files to be loaded. n_total: usize, /// The files that have been loaded successfully. - n_done: usize, + n_done: Option<usize>, /// The dir being loaded, `None` if its for a file. dir: Option<AbsPathBuf>, /// The [`Config`] version. |