diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/iconmanager.cpp | 2 | ||||
-rw-r--r-- | src/urlbar/urlbar.cpp | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/iconmanager.cpp b/src/iconmanager.cpp index 80f0d7fb..5086c59d 100644 --- a/src/iconmanager.cpp +++ b/src/iconmanager.cpp @@ -98,7 +98,7 @@ KIcon IconManager::iconForUrl(const KUrl &url) return KIcon(faviconDir + i); } - kDebug() << "Icon NOT Found. returning text-html one"; + kDebug() << "Icon NOT Found for url: " << url; return KIcon("text-html"); } diff --git a/src/urlbar/urlbar.cpp b/src/urlbar/urlbar.cpp index c8aa43ff..d7f906f3 100644 --- a/src/urlbar/urlbar.cpp +++ b/src/urlbar/urlbar.cpp @@ -138,7 +138,6 @@ void UrlBar::setQUrl(const QUrl& url) { if (url.scheme() == QL1S("about")) { - _icon->setIcon(KIcon("arrow-right")); clear(); setFocus(); } @@ -503,5 +502,10 @@ void UrlBar::suggest() void UrlBar::refreshFavicon() { - _icon->setIcon(Application::iconManager()->iconForUrl(_tab->view()->url())); + KUrl u = _tab->url(); + if(u.scheme() == QL1S("about")) { + _icon->setIcon(KIcon("arrow-right")); + return; + } + _icon->setIcon(Application::iconManager()->iconForUrl(u)); } |