summaryrefslogtreecommitdiffstats
path: root/ui/src/components/mail/listing/mod.rs
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2018-09-04 01:49:29 +0300
committerManos Pitsidianakis <el13635@mail.ntua.gr>2019-06-10 19:40:32 +0300
commitb94687cdb0ddda05bbf983042f4218dea35b80b1 (patch)
treefa6c94c17c30daf7c8d2d594e33194e3186f747f /ui/src/components/mail/listing/mod.rs
parentf6caf993aecc472be376ed34f82942389269adec (diff)
ui: add reply-context in compose
tracking-issue: #24
Diffstat (limited to 'ui/src/components/mail/listing/mod.rs')
-rw-r--r--ui/src/components/mail/listing/mod.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/src/components/mail/listing/mod.rs b/ui/src/components/mail/listing/mod.rs
index 78f8f232..a96ff7bf 100644
--- a/ui/src/components/mail/listing/mod.rs
+++ b/ui/src/components/mail/listing/mod.rs
@@ -760,7 +760,7 @@ impl Component for PlainListing {
self.dirty = true;
}
UIEventType::Action(ref action) => match action {
- Action::PlainListing(PlainListingAction::ToggleThreaded) => {
+ Action::Listing(ListingAction::ToggleThreaded) => {
context.accounts[self.cursor_pos.0]
.runtime_settings
.conf_mut()
@@ -788,7 +788,8 @@ impl Component for PlainListing {
self.dirty = true;
self.refresh_mailbox(context);
return true;
- } // _ => {}
+ }
+ _ => {}
},
_ => {}
}