diff options
| author | Christian Hesse <mail@eworm.de> | 2022-12-16 18:37:10 +0100 |
|---|---|---|
| committer | Christian Hesse <mail@eworm.de> | 2026-05-05 06:41:23 +0200 |
| commit | a42071e287f3fbf24c1010170f1aaff4781567b6 (patch) | |
| tree | 1400b7733810e771397183237a82d3929c04fd5c /ui-log.c | |
| parent | 044821677c774cd24f25f1818ea51d09cc64b006 (diff) | |
| download | cgit-a42071e287f3fbf24c1010170f1aaff4781567b6.tar.gz cgit-a42071e287f3fbf24c1010170f1aaff4781567b6.tar.bz2 cgit-a42071e287f3fbf24c1010170f1aaff4781567b6.zip | |
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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -244,6 +244,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"); |
