From 0b4a7b2bcd2eb7018296207b92c5a5494f1ba2a5 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Mon, 17 Nov 2025 19:52:49 -0500 Subject: [PATCH] BarSysMon: fixed anchoring warning --- Modules/Bar/Widgets/SystemMonitor.qml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Modules/Bar/Widgets/SystemMonitor.qml b/Modules/Bar/Widgets/SystemMonitor.qml index 38e07fba..a154a4ff 100644 --- a/Modules/Bar/Widgets/SystemMonitor.qml +++ b/Modules/Bar/Widgets/SystemMonitor.qml @@ -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(); } } }