diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-05-14 20:24:06 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-05-14 20:24:06 +0200 |
commit | 6b4f4d69a3c599bc958ccddc5f7ac1c8648a7042 (patch) | |
tree | c38c780a33c8c14f471e85725633bde545586426 /src/urlbar/urlresolver.cpp | |
parent | This commit reintroduces the QStackedWidget class for urlbars and let (diff) | |
download | rekonq-6b4f4d69a3c599bc958ccddc5f7ac1c8648a7042.tar.xz |
This commit should fix a lot of troubles on fast urlbar typing
so now situation is:
- first list is shown immediately
- timer decreases from 200 to 150 ms (less is pretty unuseful, I fear)
- people who fast type & returnPress have KUriFilter help
Hope this helps :)
As promised,
CCBUG:237390
Diffstat (limited to 'src/urlbar/urlresolver.cpp')
-rw-r--r-- | src/urlbar/urlresolver.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/urlbar/urlresolver.cpp b/src/urlbar/urlresolver.cpp index 12e2f762..840fd78f 100644 --- a/src/urlbar/urlresolver.cpp +++ b/src/urlbar/urlresolver.cpp @@ -222,7 +222,7 @@ UrlSearchList UrlResolver::bookmarksResolution() UrlSearchList UrlResolver::placeTypedDomaineNameOnTop(UrlSearchList list) { - int i=0; + int i = 0; bool found = false; while(i<list.count() && !found) @@ -239,4 +239,3 @@ UrlSearchList UrlResolver::placeTypedDomaineNameOnTop(UrlSearchList list) return list; } - |