diff options
Diffstat (limited to 'src/urlbar.cpp')
-rw-r--r-- | src/urlbar.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/urlbar.cpp b/src/urlbar.cpp index 5850f4e4..b6340fe7 100644 --- a/src/urlbar.cpp +++ b/src/urlbar.cpp @@ -161,14 +161,18 @@ void UrlBar::slotUpdateUrl() kDebug() << "Don't change my typed url..."; return; } - + + KIcon icon; + if(m_currentUrl.isEmpty()) icon = KIcon("arrow-right"); + else icon = Application::icon(m_currentUrl); + if (count()) { - changeUrl(0, Application::icon(m_currentUrl), m_currentUrl); + changeUrl(0, icon, m_currentUrl); } else { - insertUrl(0, Application::icon(m_currentUrl), m_currentUrl); + insertUrl(0, icon, m_currentUrl); } setCurrentIndex(0); |