aboutsummaryrefslogtreecommitdiffstats
diff options
authorChristian Hesse <mail@eworm.de>2024-10-16 11:59:42 +0200
committerChristian Hesse <mail@eworm.de>2025-11-17 21:40:58 +0100
commite63c1836a3e7627320039c3761cc9af47e2680a2 (patch)
treec5c6fccdcda053fdd5006a1903a0e647f9b815ff
parentui-log: show commit message in tooltip (diff)
downloadcgit-e63c1836a3e7627320039c3761cc9af47e2680a2.tar.xz
cgit-e63c1836a3e7627320039c3761cc9af47e2680a2.zip
ui-log: build ellipsis from bullets
These look cleaner... IMHO. 😜 Signed-off-by: Christian Hesse <mail@eworm.de>
-rw-r--r--ui-log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-log.c b/ui-log.c
index 4193831..78fd911 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -244,7 +244,7 @@ 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 class='msg-tooltip'>");
+ html("<span class='msg-avail'>&bull;&bull;&bull;<span class='msg-tooltip'>");
html_txt(info->msg);
html("</span></span>");
}