1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-16 07:22:34 +02:00

Add missing fadeIn when using QML/HTML Wallpaper

This commit is contained in:
Elias Steurer 2020-07-25 15:04:28 +02:00
parent 8bed32ae93
commit 281c3cf639

View File

@ -54,10 +54,12 @@ Rectangle {
case Wallpaper.WallpaperType.Html:
loader.webViewUrl = Qt.resolvedUrl(Wallpaper.fullContentPath)
loader.source = "qrc:/WebView.qml"
fadeIn()
break
case Wallpaper.WallpaperType.Qml:
loader.source = Qt.resolvedUrl(Wallpaper.fullContentPath)
imgCover.state = "out"
fadeIn()
break
}
}