diff options
author | Marko Niemelä <marko.a.niemela@nokia.com> | 2012-01-11 09:32:41 +0200 |
---|---|---|
committer | Marko Niemelä <marko.a.niemela@nokia.com> | 2012-01-11 09:32:41 +0200 |
commit | 64b23adb450e240697776a62c70b8274db3f5866 (patch) | |
tree | 64b3c4dbb4676157ef4a2d6d6a1400b3780822fa /tools | |
parent | b5b50593d4eca7932eec1e0f727bbc8b2f43f229 (diff) | |
download | qtgraphicaleffects-64b23adb450e240697776a62c70b8274db3f5866.tar.gz |
Renamed FastBlur property blur -> radius
Diffstat (limited to 'tools')
-rw-r--r-- | tools/pngdumper/ItemModel.qml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/pngdumper/ItemModel.qml b/tools/pngdumper/ItemModel.qml index b755723..a962bf5 100644 --- a/tools/pngdumper/ItemModel.qml +++ b/tools/pngdumper/ItemModel.qml @@ -306,18 +306,18 @@ VisualItemModel { height: size source: bug property string __name: "FastBlur" - property variant __properties: ["blur"] - property string __varyingProperty: "blur" - property variant __values: ["0.0", "0.5", "1.0"] + property variant __properties: ["radius"] + property string __varyingProperty: "radius" + property variant __values: ["0.0", "32", "64"] } FastBlur { function init() { checkerboard = true } width: size height: size source: bug - blur: 1.0 + radius: 64 property string __name: "FastBlur" - property variant __properties: ["blur", "transparentBorder"] + property variant __properties: ["radius", "transparentBorder"] property string __varyingProperty: "transparentBorder" property variant __values: [false, true] function uninit() { checkerboard = false } |