aboutsummaryrefslogtreecommitdiffstats
path: root/ui-log.c
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2024-08-05 00:25:49 +0200
committerChristian Hesse <mail@eworm.de>2026-04-20 21:54:37 +0200
commit762e8e0436a765c22fef3e4a18ffe5a6bfb9f9d9 (patch)
tree7d6ebb71735e4d4e2c1e28d4960b3303d0fd9ae8 /ui-log.c
parent7b1e8dfb285627a98b5703c527fb2683af3501a5 (diff)
downloadcgit-762e8e0436a765c22fef3e4a18ffe5a6bfb9f9d9.tar.gz
cgit-762e8e0436a765c22fef3e4a18ffe5a6bfb9f9d9.tar.bz2
cgit-762e8e0436a765c22fef3e4a18ffe5a6bfb9f9d9.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.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/ui-log.c b/ui-log.c
index ee51bde..4ec5817 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -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");