ui/MailListings: fix set_seen action not being processed

async
Manos Pitsidianakis 2019-12-11 01:58:35 +02:00
parent 9fae0f2fa3
commit b93154a596
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
1 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ impl Component for Listing {
if shortcut!(key == shortcuts[Listing::DESCRIPTION]["set_seen"]) =>
{
let mut event = UIEvent::Action(Action::Listing(ListingAction::SetSeen));
if self.component.process_event(&mut event, context) {
if self.process_event(&mut event, context) {
return true;
}
}