Tooltips: proper tooltip service

This commit is contained in:
ItsLemmy
2025-09-28 10:40:15 -04:00
parent 8dda007847
commit fc1742e167
15 changed files with 151 additions and 50 deletions
+2 -2
View File
@@ -329,11 +329,11 @@ Item {
acceptedButtons: Qt.LeftButton
onEntered: {
if ((windowTitle !== "") && (barPosition === "left" || barPosition === "right") || (scrollingMode === "never")) {
PanelService.tooltip.show(root, windowTitle, BarService.getTooltipDirection())
TooltipService.show(root, windowTitle, BarService.getTooltipDirection())
}
}
onExited: {
PanelService.tooltip.hide()
TooltipService.hide()
}
}
}