From 4753ed4d247a021df2f9d1aecba165e8dbc08254 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Tue, 12 Aug 2025 11:14:04 -0400 Subject: [PATCH] semi bold icons --- Widgets/NIconButton.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Widgets/NIconButton.qml b/Widgets/NIconButton.qml index 9db3f1e..825eadb 100644 --- a/Widgets/NIconButton.qml +++ b/Widgets/NIconButton.qml @@ -37,10 +37,14 @@ Rectangle { text: root.icon font.family: fontFamily font.pointSize: root.fontPointSize * scaling + font.variableAxes: { + "wght": (Font.Normal + Font.Bold) / 2.0 + } color: root.hovering ? Colors.onAccent : showBorder ? Colors.accentPrimary : Colors.textPrimary horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter opacity: root.enabled ? Style.opacityFull : Style.opacityMedium + } NTooltip {