Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
trueleo committed Jun 9, 2019
1 parent 815e3f4 commit 67f23e6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
Binary file removed contents/ui/arch.png
Binary file not shown.
17 changes: 16 additions & 1 deletion contents/ui/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import QtGraphicalEffects 1.0

Item {
id: root

property variant shadowColor: ["#BBFF0000", "#BBFF7F00", "#BBFFFF00", "#BB00FF00", "#BB0000FF", "#BB4B0082", "#BB9400D3"]
property int last: 0
property int n: shadowColor.length
Expand All @@ -25,6 +24,22 @@ Item {
source: wallpaper.configuration.WallPath
}
}

Loader {
id: wallLoader
anchors.fill: parent
active: false
sourceComponent: staticImageC
}

Component {
id: staticImageC
Image {
anchors.fill: root
sourceSize: parent
source: wallpaper.configuration.WallPath
}
}

Rectangle {
id: circle
Expand Down

0 comments on commit 67f23e6

Please sign in to comment.