Tooltip: different approach to get the current screen.

This commit is contained in:
ItsLemmy
2025-10-03 23:27:07 -04:00
parent b85576653a
commit 86127660fe
33 changed files with 32 additions and 83 deletions
+1 -1
View File
@@ -480,7 +480,7 @@ Variants {
anyAppHovered = true
const appName = appButton.appTitle || appButton.appId || "Unknown"
const tooltipText = appName.length > 40 ? appName.substring(0, 37) + "..." : appName
TooltipService.show(appButton, tooltipText, "top")
TooltipService.show(Screen, appButton, tooltipText, "top")
if (autoHide) {
showTimer.stop()
hideTimer.stop()