MediaMini: fixed invalid tooltip warning

This commit is contained in:
ItsLemmy
2025-10-06 20:46:00 -04:00
parent 621d34ea2e
commit d48bd9f297
+2 -4
View File
@@ -378,12 +378,10 @@ Item {
MediaService.playPause()
} else if (mouse.button == Qt.RightButton) {
MediaService.next()
// Need to hide the tooltip instantly
tooltip.visible = false
TooltipService.hide()
} else if (mouse.button == Qt.MiddleButton) {
MediaService.previous()
// Need to hide the tooltip instantly
tooltip.visible = false
TooltipService.hide()
}
}