BarSysMon: fixed anchoring warning

This commit is contained in:
ItsLemmy
2025-11-17 19:52:49 -05:00
parent f15c2a1e49
commit 0b4a7b2bcd
+9 -9
View File
@@ -518,16 +518,16 @@ Rectangle {
Layout.column: isVertical ? 0 : 1
scale: isVertical ? Math.min(1.0, root.width / implicitWidth) : 1.0
}
}
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: {
TooltipService.show(screen, diskContent, diskPath, BarService.getTooltipDirection());
}
onExited: {
TooltipService.hide();
}
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: {
TooltipService.show(screen, diskContent, diskPath, BarService.getTooltipDirection());
}
onExited: {
TooltipService.hide();
}
}
}