ui: Add functions for generating textual representations of key bindings (#15287)
This PR adds some helper functions in the `ui` crate that can be used to get textural representations of keystrokes or key bindings. Release Notes: - N/A
This commit is contained in:
parent
a5279cc48a
commit
c937a2fcdd
5 changed files with 206 additions and 23 deletions
|
@ -7,6 +7,7 @@ mod clickable;
|
|||
mod components;
|
||||
mod disableable;
|
||||
mod fixed;
|
||||
mod key_bindings;
|
||||
pub mod prelude;
|
||||
mod selectable;
|
||||
mod styled_ext;
|
||||
|
@ -19,6 +20,7 @@ pub use clickable::*;
|
|||
pub use components::*;
|
||||
pub use disableable::*;
|
||||
pub use fixed::*;
|
||||
pub use key_bindings::*;
|
||||
pub use prelude::*;
|
||||
pub use styled_ext::*;
|
||||
pub use styles::*;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue