Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Ensure the narrow greeter always covers the shell #169

Merged
merged 1 commit into from Jul 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions qml/Greeter/NarrowView.qml
Expand Up @@ -124,6 +124,13 @@ FocusScope {
showAnimation: StandardAnimation { property: "opacity"; to: 1 }
hideAnimation: StandardAnimation { property: "opacity"; to: 0 }

Rectangle {
// In case background fails to load or doesn't cover the whole screen
id: backgroundBackup
anchors.fill: parent
color: "black"
}

Wallpaper {
id: lockscreenBackground
objectName: "lockscreenBackground"
Expand Down