summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorRalf Engels <ralf.engels@nokia.com>2010-04-13 18:12:12 +0200
committerRalf Engels <ralf.engels@nokia.com>2010-04-13 18:12:12 +0200
commit4010a59ca9e71f85b683f7b389dd60915f99fad1 (patch)
treeb20e1464d125fcf8f7450397fbb04992bff4e0e2 /main.cpp
parentc67b439d2cc7b49b79bf664204bf8ccc2a654951 (diff)
Fix all remaining issues.
Pending: scrollTo is still using a very high speed when scrolling just a small distance. cleanup
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index a1b1155..4b243fc 100644
--- a/main.cpp
+++ b/main.cpp
@@ -14,7 +14,7 @@ int main(int argc, char **argv)
s->setWidget(lw);
lw->show();
- s->scrollTo(QPointF(80,300));
+ s->scrollTo(QPointF(80,3000));
return a.exec();
}