remove hjkl bindings

these interfere with input

we'll need to come back to this

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2025-08-15 11:55:29 -07:00
parent b750c0a927
commit 507cf113a3

View File

@@ -67,6 +67,7 @@ fn handle_key_events(input: &egui::InputState, columns: &mut Columns) {
} = event } = event
{ {
match key { match key {
/*
egui::Key::J => { egui::Key::J => {
columns.select_down(); columns.select_down();
} }
@@ -79,6 +80,7 @@ fn handle_key_events(input: &egui::InputState, columns: &mut Columns) {
egui::Key::L => { egui::Key::L => {
columns.select_left(); columns.select_left();
} }
*/
egui::Key::BrowserBack | egui::Key::Escape => { egui::Key::BrowserBack | egui::Key::Escape => {
columns.get_selected_router().go_back(); columns.get_selected_router().go_back();
} }