summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/src/components/mail.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/components/mail.rs b/ui/src/components/mail.rs
index a58d2aa1..9a058192 100644
--- a/ui/src/components/mail.rs
+++ b/ui/src/components/mail.rs
@@ -269,7 +269,7 @@ impl Component for AccountMenu {
UIEventType::Resize => {
self.dirty = true;
}
- UIEventType::Input(Key::Char('\t')) => {
+ UIEventType::Input(Key::Char('`')) => {
self.visible = !self.visible;
self.dirty = true;
}
@@ -290,7 +290,7 @@ impl Component for AccountMenu {
self.dirty = true;
}
fn get_shortcuts(&self, _context: &Context) -> ShortcutMap {
- [("Toggle account menu visibility", Key::Char('\t'))]
+ [("Toggle account menu visibility", Key::Char('`'))]
.iter()
.cloned()
.collect()