Remove username and password bars

This commit is contained in:
2022-03-06 23:07:23 +01:00
parent 48d57b43c9
commit 339a8c7975
2 changed files with 0 additions and 240 deletions

View File

@@ -90,14 +90,6 @@ Item {
states: [
State {
name: "on"
PropertyChanges {
target: mainStack
opacity: 1
}
PropertyChanges {
target: footer
opacity: 1
}
PropertyChanges {
target: wallpaperFader
factor: 1
@@ -105,57 +97,10 @@ Item {
},
State {
name: "off"
PropertyChanges {
target: mainStack
opacity: 0
}
PropertyChanges {
target: footer
opacity: 0
}
PropertyChanges {
target: wallpaperFader
factor: 0
}
}
]
transitions: [
Transition {
from: "off"
to: "on"
//Note: can't use animators as they don't play well with parallelanimations
ParallelAnimation {
NumberAnimation {
target: mainStack
property: "opacity"
duration: units.longDuration
easing.type: Easing.InOutQuad
}
NumberAnimation {
target: footer
property: "opacity"
duration: units.longDuration
easing.type: Easing.InOutQuad
}
}
},
Transition {
from: "on"
to: "off"
ParallelAnimation {
NumberAnimation {
target: mainStack
property: "opacity"
duration: 500
easing.type: Easing.InOutQuad
}
NumberAnimation {
target: footer
property: "opacity"
duration: 500
easing.type: Easing.InOutQuad
}
}
}
]
}