diff options
author | megabigbug <megabigbug@arrakis.(none)> | 2009-10-26 19:27:56 +0100 |
---|---|---|
committer | megabigbug <megabigbug@arrakis.(none)> | 2009-10-26 19:27:56 +0100 |
commit | 359fed124bd07c05de8586274f931ea74f1a2c76 (patch) | |
tree | 39b7bc9af80e6633d4b1bf3a0c8e5707776e3b3e /src/application.cpp | |
parent | keep trailing slashes (BUG 211913) (diff) | |
download | rekonq-359fed124bd07c05de8586274f931ea74f1a2c76.tar.xz |
fix arrow icon in the url bar
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/application.cpp b/src/application.cpp index 84aab713..634e068f 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -266,10 +266,7 @@ KIcon Application::icon(const KUrl &url) { if(!Application::instance()->mainWindowList().isEmpty()) // avoid infinite loop at startup { - // means it is the urlbar - if(url.isEmpty() && Application::instance()->mainWindow()->currentTab()->url().scheme() == "rekonq") - return KIcon("arrow-right"); - + if(url == KUrl("rekonq:closedTabs")) return KIcon("tab-close"); if(url == KUrl("rekonq:history")) |