Consume move left/right commands in ListView

Fixes #711
This commit is contained in:
Henrik Friedrichsen
2022-03-11 23:58:15 +01:00
parent fa26149f98
commit c42d36fa5d

View File

@@ -485,7 +485,7 @@ impl<I: ListItem + Clone> ViewExt for ListView<I> {
} }
return Ok(CommandResult::Consumed(None)); return Ok(CommandResult::Consumed(None));
} }
_ => {} _ => return Ok(CommandResult::Consumed(None)),
} }
} }
Command::Open(mode) => { Command::Open(mode) => {