summaryrefslogtreecommitdiffstats
path: root/src/components/mail/status.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/mail/status.rs')
-rw-r--r--src/components/mail/status.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/mail/status.rs b/src/components/mail/status.rs
index ca5748b5..d63e5384 100644
--- a/src/components/mail/status.rs
+++ b/src/components/mail/status.rs
@@ -403,6 +403,10 @@ impl Component for AccountStatus {
fn process_event(&mut self, event: &mut UIEvent, context: &mut Context) -> bool {
let shortcuts = self.get_shortcuts(context);
match *event {
+ UIEvent::ConfigReload { old_settings: _ } => {
+ self.theme_default = crate::conf::value(context, "theme_default");
+ self.set_dirty(true);
+ }
UIEvent::Resize => {
self.dirty = true;
}