diff --git a/client/src/modes/canvas/read_only.rs b/client/src/modes/canvas/read_only.rs index e8729ec..8168f41 100644 --- a/client/src/modes/canvas/read_only.rs +++ b/client/src/modes/canvas/read_only.rs @@ -52,7 +52,7 @@ pub async fn handle_read_only_event( // Try to match the current sequence against Read-Only mode bindings if let Some(action) = config.matches_key_sequence_generalized(&sequence) { - let result = if action == "previous_entry" && app_state.ui.show_form { + let result = if (action == "previous_entry" || action == "next_entry") && app_state.ui.show_form { crate::tui::functions::form::handle_action( action, form_state,