Tooltip: no longer needed to pass a screen explicitely

This commit is contained in:
ItsLemmy
2025-11-17 22:02:10 -05:00
parent 81c0c302d4
commit 66770625dd
19 changed files with 59 additions and 60 deletions
+1 -1
View File
@@ -255,7 +255,7 @@ Item {
onEntered: {
hovered = true;
root.entered();
TooltipService.show(screen, pill, root.tooltipText, BarService.getTooltipDirection(), Style.tooltipDelayLong);
TooltipService.show(pill, root.tooltipText, BarService.getTooltipDirection(), Style.tooltipDelayLong);
if (forceClose) {
return;
}
+1 -1
View File
@@ -297,7 +297,7 @@ Item {
onEntered: {
hovered = true;
root.entered();
TooltipService.show(screen, pill, root.tooltipText, BarService.getTooltipDirection(), Style.tooltipDelayLong);
TooltipService.show(pill, root.tooltipText, BarService.getTooltipDirection(), Style.tooltipDelayLong);
if (forceClose) {
return;
}