aboutsummaryrefslogtreecommitdiff
path: root/src/keys
diff options
context:
space:
mode:
Diffstat (limited to 'src/keys')
-rw-r--r--src/keys/key_commands.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keys/key_commands.rs b/src/keys/key_commands.rs
index 27fe0ad..fc06286 100644
--- a/src/keys/key_commands.rs
+++ b/src/keys/key_commands.rs
@@ -6,7 +6,7 @@ use crate::app_action::AppAction;
pub struct KeyCommand {
pub key_code: String,
pub description: String,
- pub action: Option<AppAction>,
+ pub action: AppAction,
}
impl std::fmt::Display for KeyCommand {