From e36d158cb41af86339b128fe6a0e0609dc0a6f40 Mon Sep 17 00:00:00 2001 From: "n loewen (aider)" Date: Sun, 8 Jun 2025 09:20:04 +0100 Subject: [PATCH] fix: Always show commit details when commit hash is available --- gtm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtm b/gtm index b3ba52d..26f4b51 100755 --- a/gtm +++ b/gtm @@ -919,7 +919,7 @@ def draw_main_status_line(stdscr, state: AppState, layout: StatusBarLayout): def draw_commit_details(stdscr, state: AppState, layout: StatusBarLayout): """Draw commit hash, message, author in the available space""" - if not state.commit_hash or layout.total_height < 2: + if not state.commit_hash: return # Get the commit message (potentially multi-line)