diff options
| author | Christian Hesse <mail@eworm.de> | 2024-08-05 00:25:49 +0200 |
|---|---|---|
| committer | Christian Hesse <mail@eworm.de> | 2026-05-05 06:41:23 +0200 |
| commit | c829e631ded662d70fc843b8b83eb7b5d9872cd3 (patch) | |
| tree | d6c30376d94b61285d27ccb6ca1556034b7046c5 /ui-log.c | |
| parent | a42071e287f3fbf24c1010170f1aaff4781567b6 (diff) | |
| download | cgit-c829e631ded662d70fc843b8b83eb7b5d9872cd3.tar.gz cgit-c829e631ded662d70fc843b8b83eb7b5d9872cd3.tar.bz2 cgit-c829e631ded662d70fc843b8b83eb7b5d9872cd3.zip | |
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
@@ -244,8 +244,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"); |
