diff --git a/wallpapers/image/imagepackage/contents/ui/config.qml b/wallpapers/image/imagepackage/contents/ui/config.qml --- a/wallpapers/image/imagepackage/contents/ui/config.qml +++ b/wallpapers/image/imagepackage/contents/ui/config.qml @@ -133,8 +133,6 @@ Row { id: colorRow spacing: units.largeSpacing / 2 - visible: ~[2,3].indexOf(resizeComboBox.currentIndex) - QtControls.Label { width: formAlignment - units.largeSpacing anchors.verticalCenter: colorButton.verticalCenter @@ -295,7 +293,7 @@ boundsBehavior: Flickable.StopAtBounds delegate: WallpaperDelegate { - color: colorRow.visible ? cfg_Color : "black" + color: cfg_Color } Connections { diff --git a/wallpapers/image/imagepackage/contents/ui/main.qml b/wallpapers/image/imagepackage/contents/ui/main.qml --- a/wallpapers/image/imagepackage/contents/ui/main.qml +++ b/wallpapers/image/imagepackage/contents/ui/main.qml @@ -196,10 +196,7 @@ Rectangle { id: backgroundColor anchors.fill: parent - - visible: ready && (currentImage.status === Image.Ready || otherImage.status === Image.Ready) && - (currentImage.fillMode === Image.PreserveAspectFit || currentImage.fillMode === Image.Pad - || otherImage.fillMode === Image.PreserveAspectFit || otherImage.fillMode === Image.Pad) + visible: ready && (currentImage.status === Image.Ready || otherImage.status === Image.Ready) color: wallpaper.configuration.Color Behavior on color { ColorAnimation { duration: units.longDuration }