horizontal time cursor

This commit is contained in:
🪞👃🪞 2024-06-21 16:59:13 +03:00
parent 3177e4ab58
commit d9b3bd150e
8 changed files with 341 additions and 249 deletions

View file

@ -128,8 +128,7 @@ pub fn handle_keymap <T> (
AppEvent::Input(Event::Key(event)) => {
for (code, modifiers, _, _, command) in keymap.iter() {
if *code == event.code && modifiers.bits() == event.modifiers.bits() {
command(state);
return Ok(true)
return command(state)
}
}
},