diff options
| author | Christian Hesse <mail@eworm.de> | 2024-08-05 00:25:49 +0200 |
|---|---|---|
| committer | Christian Hesse <mail@eworm.de> | 2025-11-17 21:40:57 +0100 |
| commit | 69c63b1bc32a10c017a2208cdcbfe855d4037d7d (patch) | |
| tree | 30129fac170cf9d1ce7857255c04cc9288678377 /ui-log.c | |
| parent | 0aac4ecb76d65081c64856ae64ae0a09b2d03826 (diff) | |
| download | cgit-69c63b1bc32a10c017a2208cdcbfe855d4037d7d.tar.gz cgit-69c63b1bc32a10c017a2208cdcbfe855d4037d7d.tar.bz2 cgit-69c63b1bc32a10c017a2208cdcbfe855d4037d7d.tar.xz | |
ui-log: show commit message in tooltip
... now that we have the ellipsis to indicate it is available.
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-log.c')
| -rw-r--r-- | ui-log.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -243,8 +243,11 @@ 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>"); + if (!ctx.qry.showmsg && info->msg && *(info->msg)) { + html("<span class='msg-avail'>...<span class='msg-tooltip'>"); + html_txt(info->msg); + html("</span></span>"); + } show_commit_decorations(commit); html("</td><td>"); cgit_open_filter(ctx.repo->email_filter, info->author_email, "log"); |
