summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-15 11:20:06 -0500
committerATMDA <atdma2600@gmail.com>2025-11-15 11:20:06 -0500
commit442b49e0e1975d51efcef90d10566c90dedbf7e1 (patch)
tree499aab8704fb2ab8d19251ecb6e11365bdfd34e3 /modules
parentcontrolcenter: appearance transparency values now use sliders (diff)
downloadcaelestia-shell-442b49e0e1975d51efcef90d10566c90dedbf7e1.tar.gz
caelestia-shell-442b49e0e1975d51efcef90d10566c90dedbf7e1.tar.bz2
caelestia-shell-442b49e0e1975d51efcef90d10566c90dedbf7e1.zip
controlcenter: appearance pane corrections to fp/int values such as scales and border
Diffstat (limited to 'modules')
-rw-r--r--modules/controlcenter/appearance/AppearancePane.qml11
1 files changed, 9 insertions, 2 deletions
diff --git a/modules/controlcenter/appearance/AppearancePane.qml b/modules/controlcenter/appearance/AppearancePane.qml
index d78ab21..6781cf0 100644
--- a/modules/controlcenter/appearance/AppearancePane.qml
+++ b/modules/controlcenter/appearance/AppearancePane.qml
@@ -408,6 +408,7 @@ RowLayout {
label: qsTr("Animation duration scale")
min: 0.1
max: 5
+ step: 0.1
value: root.animDurationsScale
onValueModified: value => {
root.animDurationsScale = value;
@@ -646,6 +647,7 @@ RowLayout {
label: qsTr("Font size scale")
min: 0.1
max: 5
+ step: 0.1
value: root.fontSizeScale
onValueModified: value => {
root.fontSizeScale = value;
@@ -665,6 +667,7 @@ RowLayout {
label: qsTr("Padding scale")
min: 0.1
max: 5
+ step: 0.1
value: root.paddingScale
onValueModified: value => {
root.paddingScale = value;
@@ -676,6 +679,7 @@ RowLayout {
label: qsTr("Rounding scale")
min: 0.1
max: 5
+ step: 0.1
value: root.roundingScale
onValueModified: value => {
root.roundingScale = value;
@@ -687,6 +691,7 @@ RowLayout {
label: qsTr("Spacing scale")
min: 0.1
max: 5
+ step: 0.1
value: root.spacingScale
onValueModified: value => {
root.spacingScale = value;
@@ -810,7 +815,8 @@ RowLayout {
SpinBoxRow {
label: qsTr("Border rounding")
min: 0.1
- max: 5
+ max: 100
+ step: 0.1
value: root.borderRounding
onValueModified: value => {
root.borderRounding = value;
@@ -821,7 +827,8 @@ RowLayout {
SpinBoxRow {
label: qsTr("Border thickness")
min: 0.1
- max: 5
+ max: 100
+ step: 0.1
value: root.borderThickness
onValueModified: value => {
root.borderThickness = value;