ui/MailListings: fix set_seen action not being processed

pull/234/head
Manos Pitsidianakis 5 years ago
parent 9fae0f2fa3
commit b93154a596
No known key found for this signature in database
GPG Key ID: 73627C2F690DF710

@ -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;
}
}

Loading…
Cancel
Save