summaryrefslogtreecommitdiff
path: root/widgets/VerticalSlider.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-26 21:35:15 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-26 21:35:15 +1000
commit11c8e5c7eb9b5f6e522946c9f44e842fec41ba7b (patch)
treef4e715dada3ebaeef457779bbcf744bd7c629077 /widgets/VerticalSlider.qml
parenticons: use variable axes (diff)
downloadcaelestia-shell-11c8e5c7eb9b5f6e522946c9f44e842fec41ba7b.tar.gz
caelestia-shell-11c8e5c7eb9b5f6e522946c9f44e842fec41ba7b.tar.bz2
caelestia-shell-11c8e5c7eb9b5f6e522946c9f44e842fec41ba7b.zip
icons: some fixes for previous axes change
Mostly spacing fixes Also qsTr windowinfo class and title when none
Diffstat (limited to 'widgets/VerticalSlider.qml')
-rw-r--r--widgets/VerticalSlider.qml2
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;
}