Bump file picker limit

This commit is contained in:
Kevin Sjöberg 2021-06-07 21:38:55 +02:00 committed by Blaž Hrastnik
parent 4bec87ad18
commit 08f50310bd

View file

@ -85,7 +85,7 @@ pub fn file_picker(root: PathBuf) -> Picker<PathBuf> {
Err(_err) => None,
});
const MAX: usize = 2048;
const MAX: usize = 8192;
Picker::new(
files.take(MAX).collect(),