summaryrefslogtreecommitdiffstats
path: root/src/components/mail/listing.rs
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2020-08-27 17:29:27 +0300
committerManos Pitsidianakis <el13635@mail.ntua.gr>2020-08-27 17:29:27 +0300
commit8f46c4ebe7987dfe79a92b25ccce8e4374f81894 (patch)
tree0270b339e1b87459bc5b51ea513d962c91e0be7e /src/components/mail/listing.rs
parentb94342c52bedff1ce77fb348351f9e2f1a6790d4 (diff)
Small fixes
Diffstat (limited to 'src/components/mail/listing.rs')
-rw-r--r--src/components/mail/listing.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/components/mail/listing.rs b/src/components/mail/listing.rs
index 3e6f110b..d3fe1b03 100644
--- a/src/components/mail/listing.rs
+++ b/src/components/mail/listing.rs
@@ -287,7 +287,7 @@ pub trait MailListingTrait: ListingTrait {
handle,
channel,
on_finish: None,
- logging_level: melib::LoggingLevel::DEBUG,
+ logging_level: melib::LoggingLevel::INFO,
},
);
}
@@ -326,7 +326,7 @@ pub trait MailListingTrait: ListingTrait {
handle,
channel,
on_finish: None,
- logging_level: melib::LoggingLevel::DEBUG,
+ logging_level: melib::LoggingLevel::INFO,
},
);
}
@@ -750,6 +750,10 @@ impl Component for Listing {
Action::Listing(a @ ListingAction::SetSeen)
| Action::Listing(a @ ListingAction::SetUnseen)
| Action::Listing(a @ ListingAction::Delete)
+ | Action::Listing(a @ ListingAction::CopyTo(_))
+ | Action::Listing(a @ ListingAction::MoveTo(_))
+ | Action::Listing(a @ ListingAction::CopyToOtherAccount(_, _))
+ | Action::Listing(a @ ListingAction::MoveToOtherAccount(_, _))
| Action::Listing(a @ ListingAction::Tag(_)) => {
let focused = self.component.get_focused_items(context);
self.component.perform_action(context, focused, a);