summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-06-24 01:34:41 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-06-24 01:34:41 (GMT)
commit4cf724204b4e02f4169dfc8a52e2cadd3aa2f1e7 (patch)
tree4e55368112631ea20ec010a2945944738d66d40a /demos
parent3900421868b910703ddc51185d1d5b6e67540e8e (diff)
downloadQt-4cf724204b4e02f4169dfc8a52e2cadd3aa2f1e7.zip
Qt-4cf724204b4e02f4169dfc8a52e2cadd3aa2f1e7.tar.gz
Qt-4cf724204b4e02f4169dfc8a52e2cadd3aa2f1e7.tar.bz2
Don't be smooth while moving (or zooming).
Diffstat (limited to 'demos')
-rw-r--r--demos/declarative/webbrowser/webbrowser.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/declarative/webbrowser/webbrowser.qml b/demos/declarative/webbrowser/webbrowser.qml
index a38d032..5f8be04 100644
--- a/demos/declarative/webbrowser/webbrowser.qml
+++ b/demos/declarative/webbrowser/webbrowser.qml
@@ -197,7 +197,7 @@ Item {
cacheSize: 4000000
url: WebBrowser.url
- smooth: true
+ smooth: !Flick.moving
focusable: true
focus: true
@@ -421,7 +421,7 @@ Item {
SetPropertyAction {
target: WebView
property: "smooth"
- value: true
+ value: !Flick.moving
}
}
}