From 11c8e5c7eb9b5f6e522946c9f44e842fec41ba7b Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 26 Jun 2025 21:35:15 +1000 Subject: icons: some fixes for previous axes change Mostly spacing fixes Also qsTr windowinfo class and title when none --- widgets/VerticalSlider.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'widgets') diff --git a/widgets/VerticalSlider.qml b/widgets/VerticalSlider.qml index 2b807a1..fc20bef 100644 --- a/widgets/VerticalSlider.qml +++ b/widgets/VerticalSlider.qml @@ -68,7 +68,7 @@ Slider { function update(): void { animate = !moving; text = moving ? Qt.binding(() => Math.round(root.value * 100)) : Qt.binding(() => root.icon); - font.pointSize = moving ? Appearance.font.size.small : Appearance.font.size.normal; + font.pointSize = moving ? Appearance.font.size.small : Appearance.font.size.larger; font.family = moving ? Appearance.font.family.sans : Appearance.font.family.material; } -- cgit v1.2.3-freya