diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-10 00:35:01 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-10 00:35:01 +0200 |
commit | 23d65a3a5c1e6c0e2501d41ae0660c89085dbb84 (patch) | |
tree | 1050cbef7b0213ceefa4041e453ae04b71295928 /src/urlbar | |
parent | Merge commit 'refs/merge-requests/120' of git://gitorious.org/rekonq/mainline... (diff) | |
download | rekonq-23d65a3a5c1e6c0e2501d41ae0660c89085dbb84.tar.xz |
Fix focus problems and trim search strings (fix encodings problems, step 1)
Diffstat (limited to 'src/urlbar')
-rw-r--r-- | src/urlbar/urlbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/urlbar/urlbar.cpp b/src/urlbar/urlbar.cpp index adc011f0..6f916482 100644 --- a/src/urlbar/urlbar.cpp +++ b/src/urlbar/urlbar.cpp @@ -112,7 +112,7 @@ void UrlBar::activated(const QString& urlString, Rekonq::OpenType type) clearFocus(); setText(urlString); - Application::instance()->loadUrl(urlString, type); + Application::instance()->loadUrl(urlString.trimmed(), type); } |