From 6e04c1f267643713546a033e202d6b7da5c45d41 Mon Sep 17 00:00:00 2001 From: filipriec Date: Sun, 30 Mar 2025 14:24:12 +0200 Subject: [PATCH] original form fully working in the tui functions is the logic for the form --- client/src/modes/canvas/read_only.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,