summaryrefslogtreecommitdiffstats
path: root/ui/src/components/mail/listing/thread.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/mail/listing/thread.rs')
-rw-r--r--ui/src/components/mail/listing/thread.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/ui/src/components/mail/listing/thread.rs b/ui/src/components/mail/listing/thread.rs
index 1b8a134d..a514b64b 100644
--- a/ui/src/components/mail/listing/thread.rs
+++ b/ui/src/components/mail/listing/thread.rs
@@ -698,4 +698,11 @@ impl Component for ThreadListing {
};
self.dirty = true;
}
+ fn get_shortcuts(&self, context: &Context) -> ShortcutMap {
+ self
+ .view
+ .as_ref()
+ .map(|p| p.get_shortcuts(context))
+ .unwrap_or_default()
+ }
}