浏览代码

Juha pointed out that undue blending would increase load on low end targets

Donald Carr 8 年之前
父节点
当前提交
12a11f47ed
共有 2 个文件被更改,包括 2 次插入3 次删除
  1. 2 2
      qml/common/ArtImage.qml
  2. 0 1
      qml/main.qml

+ 2 - 2
qml/common/ArtImage.qml

@@ -3,14 +3,14 @@ import PictureModel 1.0
 
 import ".."
 
-Rectangle {
+Item {
     id: root
     property var effect
     property int modelIndex
 
     property alias asynchronous: image.asynchronous
 
-    color: globalSettings.randomTapestryColour ? Qt.rgba(Math.random(255), Math.random(255), Math.random(255), 1.0) : "black"
+    //color: Qt.rgba(Math.random(255), Math.random(255), Math.random(255), 1.0)
 
     height: Math.ceil(width/imageModel.data(modelIndex, PictureModel.RatioRole))
     width: parent ? parent.width : 0

+ 0 - 1
qml/main.qml

@@ -130,7 +130,6 @@ Window {
         property bool unlicensed: false
 
         property real artOpacity: 1.0
-        property bool randomTapestryColour: false
         property bool fadeInImages: true
 
         property bool animatedBackground: false