Skip to content

Commit 6e66803

Browse files
author
ComputelessComputer
committed
remove space advance shortcut in kanban
1 parent 6efd9ec commit 6e66803

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/tui/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3125,7 +3125,7 @@ fn handle_kanban_key(app: &mut App, key: KeyEvent) -> io::Result<bool> {
31253125
}
31263126
KeyCode::Up | KeyCode::Char('k') => move_kanban_selection(app, -1),
31273127
KeyCode::Down | KeyCode::Char('j') => move_kanban_selection(app, 1),
3128-
KeyCode::Char('p') | KeyCode::Char(' ') => {
3128+
KeyCode::Char('p') => {
31293129
if let Some(id) = app.kanban_selected {
31303130
let now = Utc::now();
31313131
if let Some(task) = app.tasks.iter_mut().find(|t| t.id == id) {

0 commit comments

Comments
 (0)