fix(ui): Display pending keys in KeyInputPending

This commit is contained in:
Benedikt Peetz 2023-10-18 23:10:12 +02:00
parent 18152bdded
commit c024b73625
Signed by: bpeetz
GPG Key ID: A5E94010C3A642AD
1 changed files with 2 additions and 2 deletions

View File

@ -86,8 +86,8 @@ impl fmt::Display for State {
Self::Setup => write!(f, "Setup (!! workaround !!)"), Self::Setup => write!(f, "Setup (!! workaround !!)"),
Self::KeyInputPending { Self::KeyInputPending {
old_state: _, old_state: _,
pending_keys: _, pending_keys: keys,
} => write!(f, "Key Input Pending"), } => write!(f, "Key Input Pending: {}", keys),
} }
} }
} }