diff options
Diffstat (limited to 'src/urlbar.cpp')
-rw-r--r-- | src/urlbar.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/urlbar.cpp b/src/urlbar.cpp index 12691519..b6340fe7 100644 --- a/src/urlbar.cpp +++ b/src/urlbar.cpp @@ -155,19 +155,24 @@ void UrlBar::setProgress(int progress) void UrlBar::slotUpdateUrl() { // Don't change my typed url... + // FIXME this is not a proper solution (also if it works...) if(hasFocus()) { 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); |