From b07cd0fc225fb61ec4fec719dd15641dbda1e9df Mon Sep 17 00:00:00 2001 From: Ian Keane Date: Wed, 3 Dec 2025 13:44:08 -0500 Subject: [PATCH] Fix off-by-one on ungrouped day selections --- src/ui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui.rs b/src/ui.rs index 5334ea5..426ebb3 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -728,7 +728,7 @@ fn render_log_view(frame: &mut Frame, app: &App) { let is_entry = if is_by_project { line.starts_with(" ") // 8 spaces for ByProject } else { - line.starts_with(" ") && !line.starts_with(" ") // 4 spaces for ByDate + line.starts_with(" ") && !line.starts_with(" ") && line.trim() != "---" // 4 spaces for ByDate }; if is_entry {