diff --git a/Modules/Bar/Widgets/SystemMonitor.qml b/Modules/Bar/Widgets/SystemMonitor.qml index 2d9f47e9..a1090936 100644 --- a/Modules/Bar/Widgets/SystemMonitor.qml +++ b/Modules/Bar/Widgets/SystemMonitor.qml @@ -53,7 +53,7 @@ Rectangle { id: percentMetrics font.family: Settings.data.ui.fontFixed font.weight: Style.fontWeightMedium - font.pointSize: textSize + font.pointSize: textSize * Settings.data.ui.fontFixedScale text: "99%" // Use the longest possible string for measurement } @@ -61,7 +61,7 @@ Rectangle { id: tempMetrics font.family: Settings.data.ui.fontFixed font.weight: Style.fontWeightMedium - font.pointSize: textSize + font.pointSize: textSize * Settings.data.ui.fontFixedScale text: "99°" // Use the longest possible string for measurement } @@ -69,7 +69,7 @@ Rectangle { id: memMetrics font.family: Settings.data.ui.fontFixed font.weight: Style.fontWeightMedium - font.pointSize: textSize + font.pointSize: textSize * Settings.data.ui.fontFixedScale text: "99.9K" // Longest value part of network speed }