diff --git a/src/app/status.rs b/src/app/status.rs index b908ad9..da6203c 100644 --- a/src/app/status.rs +++ b/src/app/status.rs @@ -86,8 +86,8 @@ impl fmt::Display for State { Self::Setup => write!(f, "Setup (!! workaround !!)"), Self::KeyInputPending { old_state: _, - pending_keys: _, - } => write!(f, "Key Input Pending"), + pending_keys: keys, + } => write!(f, "Key Input Pending: {}", keys), } } }