aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/testbed/TestFastBlur.qml
diff options
context:
space:
mode:
authorMarko Niemelä <marko.a.niemela@nokia.com>2012-01-10 16:33:53 +0200
committerMarko Niemelä <marko.a.niemela@nokia.com>2012-01-10 16:33:53 +0200
commitb5b50593d4eca7932eec1e0f727bbc8b2f43f229 (patch)
treea6f6432a2ee78c8a0da8c2e31767d24501bed18b /tests/manual/testbed/TestFastBlur.qml
parent9adb74149e07b8d750596dff928d7d725e16c74a (diff)
Simplified manual test codes
Diffstat (limited to 'tests/manual/testbed/TestFastBlur.qml')
-rw-r--r--tests/manual/testbed/TestFastBlur.qml31
1 files changed, 1 insertions, 30 deletions
diff --git a/tests/manual/testbed/TestFastBlur.qml b/tests/manual/testbed/TestFastBlur.qml
index 16515af..ea723a2 100644
--- a/tests/manual/testbed/TestFastBlur.qml
+++ b/tests/manual/testbed/TestFastBlur.qml
@@ -44,17 +44,6 @@ import "../../../src/effects"
TestCaseTemplate {
ImageSource {
id: imageSource;
- forcedUpdateAnimationRunning: updateCheckBox.selected
- }
-
- ShaderEffectSource {
- id: shaderEffectSource
- sourceItem: imageSource
- live: updateCheckBox.selected
- hideSource: enabledCheckBox.selected
- smooth: true
- visible: enabledCheckBox.selected
- onLiveChanged: scheduleUpdate()
}
FastBlur {
@@ -64,7 +53,7 @@ TestCaseTemplate {
transparentBorder: transparentBorderCheckBox.selected
visible: enabledCheckBox.selected
cached: cachedCheckBox.selected
- source: sourceType.value == "shaderEffectSource" ? shaderEffectSource : imageSource
+ source: imageSource
}
bgColor: bgColorPicker.color
@@ -109,24 +98,6 @@ TestCaseTemplate {
caption: "animated"
selected: false
}
- RadioButtonColumn {
- id: sourceType
- value: "shaderEffectSource"
- caption: "source type"
- RadioButton {
- caption: "shaderEffectSource"
- selected: caption == sourceType.value
- onPressedChanged: sourceType.value = caption
- }
- RadioButton {
- caption: "image"
- selected: caption == sourceType.value
- onPressedChanged: {
- sourceType.value = caption
- updateCheckBox.selected = false
- }
- }
- }
BGColorPicker {
id: bgColorPicker
}