diff --git a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml index e5e4a128..0a4bc253 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml @@ -1367,7 +1367,8 @@ Item { text: buttonRoot.text color: buttonRoot.active ? root.urgent : root.foreground font.family: buttonRoot.fontFamily - font.pixelSize: buttonRoot.fontSize + font.pointSize: buttonRoot.fontSize * 0.75 + renderType: Text.NativeRendering rotation: buttonRoot.textRotation horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter diff --git a/default/quickshell/omarchy-shell/plugins/bar/common/WidgetButton.qml b/default/quickshell/omarchy-shell/plugins/bar/common/WidgetButton.qml index 547fbe79..23a1a70a 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/common/WidgetButton.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/common/WidgetButton.qml @@ -41,7 +41,8 @@ Item { text: root.text color: root.active ? root.activeColor : root.foreground font.family: root.fontFamily - font.pixelSize: root.fontSize + font.pointSize: root.fontSize * 0.75 + renderType: Text.NativeRendering rotation: root.textRotation horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter