diff options
Diffstat (limited to 'widgets')
| -rw-r--r-- | widgets/VerticalSlider.qml | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |