diff options
author | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-19 22:11:35 +0000 |
---|---|---|
committer | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-19 22:11:35 +0000 |
commit | 8f486b791c8e485540b93dafb9c77032e4c1f57d (patch) | |
tree | d2fcefebd52dfdd2769e18a9f8679cd68d07e821 | |
parent | 96a33d90689a46ea58f812d76fdd2eaf93edecfa (diff) | |
download | tdelibs-8f486b791c8e485540b93dafb9c77032e4c1f57d.tar.gz tdelibs-8f486b791c8e485540b93dafb9c77032e4c1f57d.zip |
[kdelibs/khtml] smooth scrolling is disabled by default
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1215851 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | khtml/khtmlview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/khtml/khtmlview.cpp b/khtml/khtmlview.cpp index 37bbbb443..e0c36c08b 100644 --- a/khtml/khtmlview.cpp +++ b/khtml/khtmlview.cpp @@ -4518,7 +4518,7 @@ static const int SCROLL_TICK = 20; void KHTMLView::scrollBy(int dx, int dy) { KConfigGroup cfg( KGlobal::config(), "KDE" ); - if( !cfg.readBoolEntry( "SmoothScrolling", true )) { + if( !cfg.readBoolEntry( "SmoothScrolling", false )) { TQScrollView::scrollBy( dx, dy ); return; } |