forked from trinitrix/core
fix(ui): Display pending keys in KeyInputPending
This commit is contained in:
parent
18152bdded
commit
c024b73625
|
@ -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),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue