From 6f3dcc246475bf80a58fa955dc8de4f14372d1bb Mon Sep 17 00:00:00 2001 From: Sam <17427046+Samillion@users.noreply.github.com> Date: Sat, 2 Nov 2024 20:26:14 +0200 Subject: [PATCH] feat: add a separator for chapter title tooltip --- modernz.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modernz.lua b/modernz.lua index 87914bc..74bdf6e 100644 --- a/modernz.lua +++ b/modernz.lua @@ -1076,7 +1076,7 @@ local function render_elements(master_ass) if dur > 0 then local ch = get_chapter(state.sliderpos * dur / 100) if ch and ch.title and ch.title ~= "" then - tooltip_content = tooltip_content .. " " .. string.format(user_opts.chapter_fmt, ch.title) + tooltip_content = tooltip_content .. " • " .. string.format(user_opts.chapter_fmt, ch.title) end end end