diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-10-19 10:31:01 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-10-19 10:31:01 +0200 |
commit | 65c812d180376b1d9b5722e688b5f598e9f99d3a (patch) | |
tree | 466123893087a9e7aa3b21e685edc445ee4d26b9 | |
parent | reintroduce and fix recently closed tab feature (diff) | |
download | rekonq-65c812d180376b1d9b5722e688b5f598e9f99d3a.tar.xz |
Fixing tab close icon
-rw-r--r-- | src/application.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/application.cpp b/src/application.cpp index 05b5aca6..d2c07a8e 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -249,8 +249,8 @@ KIcon Application::icon(const KUrl &url) if(url.isEmpty() && Application::instance()->mainWindow()->currentTab()->url().scheme() == "rekonq") return KIcon("arrow-right"); - if(url == KUrl("rekonq:allTabs")) - return KIcon("tab-duplicate"); + if(url == KUrl("rekonq:closedTabs")) + return KIcon("tab-close"); if(url == KUrl("rekonq:history")) return KIcon("view-history"); if(url == KUrl("rekonq:bookmarks")) |