Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.zx2c4.com/cgit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2024-08-05 01:25:49 +0300
committerChristian Hesse <mail@eworm.de>2024-08-17 00:29:06 +0300
commit1b63a1f4c4b3a4c59210f39eca3e960844f2770c (patch)
tree29c340aa0cedd7eeadd16f7625a7b16fc8c9c715 /ui-log.c
parent933bdca263d696d337a577f808b2898a6e3ee7ed (diff)
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 faec658..4193831 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -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");