diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-15 19:26:14 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-15 19:26:14 -0500 |
| commit | 5be8d68ae7bd1f58ed10979a9b1c7cf055519fc6 (patch) | |
| tree | 50c094d3f6fb2f3ce2987a10f24b31c2df1f9b15 /modules/controlcenter/appearance/AppearancePane.qml | |
| parent | controlcenter: forget network button color (diff) | |
| download | caelestia-shell-5be8d68ae7bd1f58ed10979a9b1c7cf055519fc6.tar.gz caelestia-shell-5be8d68ae7bd1f58ed10979a9b1c7cf055519fc6.tar.bz2 caelestia-shell-5be8d68ae7bd1f58ed10979a9b1c7cf055519fc6.zip | |
controlcenter: increased animation on fade-in (wallpaper and applications)
Diffstat (limited to 'modules/controlcenter/appearance/AppearancePane.qml')
| -rw-r--r-- | modules/controlcenter/appearance/AppearancePane.qml | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/modules/controlcenter/appearance/AppearancePane.qml b/modules/controlcenter/appearance/AppearancePane.qml index ea81fa7..388fc88 100644 --- a/modules/controlcenter/appearance/AppearancePane.qml +++ b/modules/controlcenter/appearance/AppearancePane.qml @@ -518,13 +518,13 @@ RowLayout { from: 0.1 to: 5.0 - value: rootPane.animDurationsScale + value: rootPane.animDurationsScale onMoved: { rootPane.animDurationsScale = animDurationsSlider.value; if (!animDurationsInput.activeFocus) { animDurationsInput.text = (animDurationsSlider.value).toFixed(1); } - rootPane.saveConfig(); + rootPane.saveConfig(); } } } @@ -841,13 +841,13 @@ RowLayout { from: 0.1 to: 5.0 - value: rootPane.fontSizeScale + value: rootPane.fontSizeScale onMoved: { rootPane.fontSizeScale = fontSizeSlider.value; if (!fontSizeInput.activeFocus) { fontSizeInput.text = (fontSizeSlider.value).toFixed(1); } - rootPane.saveConfig(); + rootPane.saveConfig(); } } } @@ -948,13 +948,13 @@ RowLayout { from: 0.1 to: 5.0 - value: rootPane.paddingScale + value: rootPane.paddingScale onMoved: { rootPane.paddingScale = paddingSlider.value; if (!paddingInput.activeFocus) { paddingInput.text = (paddingSlider.value).toFixed(1); } - rootPane.saveConfig(); + rootPane.saveConfig(); } } } @@ -1047,13 +1047,13 @@ RowLayout { from: 0.1 to: 5.0 - value: rootPane.roundingScale + value: rootPane.roundingScale onMoved: { rootPane.roundingScale = roundingSlider.value; if (!roundingInput.activeFocus) { roundingInput.text = (roundingSlider.value).toFixed(1); } - rootPane.saveConfig(); + rootPane.saveConfig(); } } } @@ -1146,13 +1146,13 @@ RowLayout { from: 0.1 to: 5.0 - value: rootPane.spacingScale + value: rootPane.spacingScale onMoved: { rootPane.spacingScale = spacingSlider.value; if (!spacingInput.activeFocus) { spacingInput.text = (spacingSlider.value).toFixed(1); } - rootPane.saveConfig(); + rootPane.saveConfig(); } } } @@ -1462,13 +1462,13 @@ RowLayout { from: 0.1 to: 100 - value: rootPane.borderRounding + value: rootPane.borderRounding onMoved: { rootPane.borderRounding = borderRoundingSlider.value; if (!borderRoundingInput.activeFocus) { borderRoundingInput.text = (borderRoundingSlider.value).toFixed(1); } - rootPane.saveConfig(); + rootPane.saveConfig(); } } } @@ -1555,13 +1555,13 @@ RowLayout { from: 0.1 to: 100 - value: rootPane.borderThickness + value: rootPane.borderThickness onMoved: { rootPane.borderThickness = borderThicknessSlider.value; if (!borderThicknessInput.activeFocus) { borderThicknessInput.text = (borderThicknessSlider.value).toFixed(1); } - rootPane.saveConfig(); + rootPane.saveConfig(); } } } @@ -1677,7 +1677,7 @@ RowLayout { const val = parseInt(text); if (!isNaN(val) && val >= 0 && val <= 10) { rootPane.visualiserRounding = val; - rootPane.saveConfig(); + rootPane.saveConfig(); } } } @@ -1706,11 +1706,11 @@ RowLayout { if (!visualiserRoundingInput.activeFocus) { visualiserRoundingInput.text = Math.round(visualiserRoundingSlider.value).toString(); } - rootPane.saveConfig(); - } - } + rootPane.saveConfig(); } } + } + } SectionContainer { contentSpacing: Appearance.spacing.normal @@ -1951,7 +1951,7 @@ RowLayout { Behavior on opacity { NumberAnimation { - duration: 150 + duration: 1000 easing.type: Easing.OutQuad } } @@ -1972,7 +1972,7 @@ RowLayout { Behavior on opacity { NumberAnimation { - duration: 150 + duration: 1000 easing.type: Easing.OutQuad } } @@ -2049,7 +2049,7 @@ RowLayout { Behavior on opacity { NumberAnimation { - duration: 200 + duration: 1000 easing.type: Easing.OutCubic } } @@ -2085,7 +2085,7 @@ RowLayout { Behavior on opacity { NumberAnimation { - duration: 200 + duration: 1000 easing.type: Easing.OutCubic } } |