Double the UI picker file limit.

This commit is contained in:
Blaž Hrastnik 2021-05-18 17:53:58 +09:00
parent 5a245b83a0
commit 51d1d43289

View file

@ -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(),