Calendar: events tooltip use fixed font with improved time formating

This commit is contained in:
ItsLemmy
2025-11-11 06:54:13 -05:00
parent a6f25cc9d5
commit 9bccf4ff56
3 changed files with 19 additions and 15 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ Singleton {
Tooltip {}
}
function show(screen, target, text, direction, delay) {
function show(screen, target, text, direction, delay, fontFamily) {
if (!Settings.data.ui.tooltipsEnabled) {
return
}
@@ -78,7 +78,7 @@ Singleton {
})
// Show the tooltip
newTooltip.show(screen, target, text, direction || "auto", delay || Style.tooltipDelay)
newTooltip.show(screen, target, text, direction || "auto", delay || Style.tooltipDelay, fontFamily)
return newTooltip
} else {