summaryrefslogtreecommitdiffstats
path: root/src/run.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/run.rs')
-rw-r--r--src/run.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run.rs b/src/run.rs
index a2e81b3..d6b2466 100644
--- a/src/run.rs
+++ b/src/run.rs
@@ -83,7 +83,7 @@ pub fn run_loop(
.message_queue_mut()
.push_info(format!("Unmapped input: {}", key.to_string()));
}
- Some(CommandKeybind::SimpleKeybind(command)) => {
+ Some(CommandKeybind::SimpleKeybind { command, .. }) => {
if let Err(e) = command.execute(context, backend, &keymap_t) {
context.message_queue_mut().push_error(e.to_string());
}