From c024b73625f0f6900adb56d8b411e75e4f0ffb24 Mon Sep 17 00:00:00 2001 From: Soispha Date: Wed, 18 Oct 2023 23:10:12 +0200 Subject: [PATCH] fix(ui): Display pending keys in KeyInputPending --- src/app/status.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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), } } }