diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-11-13 02:49:48 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-11-13 02:49:48 +0100 |
commit | c71cdb93316c30737fa4b98d3edbe58bb3b0c457 (patch) | |
tree | b29c50861d04971fd313629ae06de03bfb5beecd /src | |
parent | This hack seems solve the about: protocol loading problem (diff) | |
download | rekonq-c71cdb93316c30737fa4b98d3edbe58bb3b0c457.tar.xz |
Finally remembered to fix urlbar
Diffstat (limited to 'src')
-rw-r--r-- | src/urlbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/urlbar.cpp b/src/urlbar.cpp index 68e3182f..d2ab66d0 100644 --- a/src/urlbar.cpp +++ b/src/urlbar.cpp @@ -136,7 +136,7 @@ void UrlBar::setupLineEdit() void UrlBar::setUrl(const QUrl& url) { - if(url.scheme() == "rekonq") + if(url.scheme() == "about") { m_currentUrl = ""; setFocus(); |