aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2024-10-16 11:59:42 +0200
committerChristian Hesse <mail@eworm.de>2026-04-20 21:54:37 +0200
commit297ec331f25d1c8aad96adc8be5e3c84424be0d4 (patch)
tree59a181a1162f7c70b6d7602ff7e350b00a590b93
parent762e8e0436a765c22fef3e4a18ffe5a6bfb9f9d9 (diff)
downloadcgit-297ec331f25d1c8aad96adc8be5e3c84424be0d4.tar.gz
cgit-297ec331f25d1c8aad96adc8be5e3c84424be0d4.tar.bz2
cgit-297ec331f25d1c8aad96adc8be5e3c84424be0d4.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 4ec5817..434ff8d 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -245,7 +245,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>");
}