aboutsummaryrefslogtreecommitdiff
path: root/ui-log.c
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2022-12-16 17:37:10 +0000
committerChristian Hesse <mail@eworm.de>2022-12-19 17:06:32 +0000
commit1dff309f679246a1fa2406dc32f933ff5e84e991 (patch)
tree3414328ec556bd241bab856974d115c977803375 /ui-log.c
parent907134b7a29177cb45aa461c549c004b1ae875af (diff)
downloadcgit-ch/log-commit-message.tar
cgit-ch/log-commit-message.tar.gz
cgit-ch/log-commit-message.zip
ui-log: show ellipsis if detailed commit message is availablech/log-commit-message
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 311304a..0b6fd38 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -240,6 +240,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 && strlen(info->msg) > 0)
+ html("<span class='msg-avail'>...</span>");
show_commit_decorations(commit);
html("</td><td>");
cgit_open_filter(ctx.repo->email_filter, info->author_email, "log");