aboutsummarybugs & patchesrefslogtreecommitdiffstats
path: root/ui-log.c
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2022-12-16 18:37:10 +0100
committerChristian Hesse <mail@eworm.de>2025-11-17 21:40:57 +0100
commit0aac4ecb76d65081c64856ae64ae0a09b2d03826 (patch)
tree8108a0e57b09564fe399a2f346b22833c855da1d /ui-log.c
parent4c16acb970e6998c51de6546a5c1de516fc45db5 (diff)
downloadcgit-0aac4ecb76d65081c64856ae64ae0a09b2d03826.tar.gz
cgit-0aac4ecb76d65081c64856ae64ae0a09b2d03826.tar.bz2
cgit-0aac4ecb76d65081c64856ae64ae0a09b2d03826.tar.xz
ui-log: show ellipsis if detailed commit message is available
The existence of a detailed commit message may be of interst even if only the subject is shown by default. Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-log.c')
-rw-r--r--ui-log.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui-log.c b/ui-log.c
index ee2a607..faec658 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -243,6 +243,8 @@ static void print_commit(struct commit *commit, struct rev_info *revs)
}
cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head,
oid_to_hex(&commit->object.oid), ctx.qry.vpath);
+ if (!ctx.qry.showmsg && info->msg && *(info->msg))
+ html("<span class='msg-avail'>...</span>");
show_commit_decorations(commit);
html("</td><td>");
cgit_open_filter(ctx.repo->email_filter, info->author_email, "log");