From 7a526384084b2fd6a6f61e3e4918eb9457b1c6cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Sat, 24 Aug 2013 01:17:59 +0200 Subject: [PATCH] Fix image --- .../contents/ui/WobbleExample.qml | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/shell/applets/testshaderapplet/contents/ui/WobbleExample.qml b/src/shell/applets/testshaderapplet/contents/ui/WobbleExample.qml index 64d9f50d7..dbbf8fd2b 100644 --- a/src/shell/applets/testshaderapplet/contents/ui/WobbleExample.qml +++ b/src/shell/applets/testshaderapplet/contents/ui/WobbleExample.qml @@ -84,7 +84,7 @@ ShaderExample { Item { id: imageItem - opacity: 0.0 + opacity: 0.8 anchors.fill: parent anchors.topMargin: 48 Image { @@ -94,20 +94,20 @@ ShaderExample { } } - PlasmaCore.IconItem { - id: iconItem - source: "plasma" - width: 400 - height: 400 -// width: parent.height -// height: width - anchors.centerIn: parent - } +// PlasmaCore.IconItem { +// id: iconItem +// source: "plasmagik" +// width: 400 +// height: 400 +// // width: parent.height +// // height: width +// anchors.centerIn: parent +// } ShaderEffect { id: wobbleShader - anchors.fill: iconItem + anchors.fill: imageItem //property real time property variant mouse property variant resolution @@ -119,7 +119,7 @@ ShaderExample { property int speed: (speedSlider.maximumValue - speedSlider.value + 1) property variant source: ShaderEffectSource { - sourceItem: iconItem + sourceItem: imageItem hideSource: true }