summaryrefslogtreecommitdiffstats
path: root/src/command/actions.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/actions.rs')
-rw-r--r--src/command/actions.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/command/actions.rs b/src/command/actions.rs
index 110a637c..85895644 100644
--- a/src/command/actions.rs
+++ b/src/command/actions.rs
@@ -121,6 +121,7 @@ pub enum Action {
Mailbox(AccountName, MailboxOperation),
AccountAction(AccountName, AccountAction),
PrintSetting(String),
+ ReloadConfiguration,
ToggleMouse,
Quit,
}
@@ -143,6 +144,7 @@ impl Action {
Action::PrintSetting(_) => false,
Action::ToggleMouse => false,
Action::Quit => true,
+ Action::ReloadConfiguration => false,
}
}
}