open-rs fixes

This commit is contained in:
veeso
2021-06-19 15:03:28 +02:00
parent b73c3228e4
commit 00bee04c2c
4 changed files with 55 additions and 58 deletions

View File

@@ -42,12 +42,14 @@ pub(crate) mod rename;
pub(crate) mod save;
pub(crate) mod submit;
#[derive(Debug)]
pub(crate) enum SelectedEntry {
One(FsEntry),
Many(Vec<FsEntry>),
None,
}
#[derive(Debug)]
enum SelectedEntryIndex {
One(usize),
Many(Vec<usize>),