Double the UI picker file limit.
This commit is contained in:
parent
5a245b83a0
commit
51d1d43289
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ pub fn file_picker(root: PathBuf) -> Picker<PathBuf> {
|
|||
Err(_err) => None,
|
||||
});
|
||||
|
||||
const MAX: usize = 1024;
|
||||
const MAX: usize = 2048;
|
||||
|
||||
Picker::new(
|
||||
files.take(MAX).collect(),
|
||||
|
|
Loading…
Reference in a new issue