diff options
| author | daviddavid <geiger.david68210@gmail.com> | 2026-02-25 18:58:42 +0100 |
|---|---|---|
| committer | daviddavid <geiger.david68210@gmail.com> | 2026-02-25 18:58:42 +0100 |
| commit | c7b8047e65dbf2ec3d2022cf54fab0419d20aa3a (patch) | |
| tree | 0379dac3bba0c8841f675c27b17b737f0f27a663 | |
| parent | b6cc69dd23cc7e2fbadbbabc45106aa26128541a (diff) | |
| download | config-c7b8047e65dbf2ec3d2022cf54fab0419d20aa3a.tar config-c7b8047e65dbf2ec3d2022cf54fab0419d20aa3a.tar.gz config-c7b8047e65dbf2ec3d2022cf54fab0419d20aa3a.tar.bz2 config-c7b8047e65dbf2ec3d2022cf54fab0419d20aa3a.tar.xz config-c7b8047e65dbf2ec3d2022cf54fab0419d20aa3a.zip | |
Define properly missing bottomRect id
- to fix: Splash.qml:89: ReferenceError: bottomRect is not defined
| -rw-r--r-- | usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml index fb82139..9112841 100644 --- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml +++ b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml @@ -41,6 +41,7 @@ Image { anchors.centerIn: parent } Rectangle { + id: bottomRect radius: 3 color: "#31363b" anchors { @@ -59,7 +60,7 @@ Image { } width: (parent.width / 6) * (stage - 1) color: "#3daee9" - Behavior on width { + Behavior on width { PropertyAnimation { duration: 250 easing.type: Easing.InOutQuad |
