From 78a8553f1cfa7b9ae63d5d92702d68035f937041 Mon Sep 17 00:00:00 2001 From: mo8it Date: Mon, 19 Aug 2024 23:29:17 +0200 Subject: [PATCH] "Continue at" quits the list --- src/list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/list.rs b/src/list.rs index f28230e4..6ff69596 100644 --- a/src/list.rs +++ b/src/list.rs @@ -75,7 +75,7 @@ fn handle_list(app_state: &mut AppState, stdout: &mut StdoutLock) -> Result<()> } KeyCode::Char('c') => { ui_state.selected_to_current_exercise()?; - ui_state = ui_state.with_updated_rows(); + break; } _ => (), }