Initial Radarr ui!
This commit is contained in:
+13
-3
@@ -9,17 +9,27 @@ macro_rules! generate_keybindings {
|
||||
}
|
||||
|
||||
generate_keybindings! {
|
||||
quit
|
||||
quit,
|
||||
up,
|
||||
down
|
||||
}
|
||||
|
||||
pub struct KeyBinding {
|
||||
key: Key,
|
||||
desc: &'static str
|
||||
pub key: Key,
|
||||
pub desc: &'static str
|
||||
}
|
||||
|
||||
pub const DEFAULT_KEYBINDINGS: KeyBindings = KeyBindings {
|
||||
quit: KeyBinding {
|
||||
key: Key::Char('q'),
|
||||
desc: "Quit",
|
||||
},
|
||||
up: KeyBinding {
|
||||
key: Key::Up,
|
||||
desc: "Scroll up"
|
||||
},
|
||||
down: KeyBinding {
|
||||
key: Key::Down,
|
||||
desc: "Scroll down"
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user