]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Use new folder-stash icon
authorNathaniel Graham <pointedstick@zoho.com>
Wed, 8 Nov 2017 14:06:46 +0000 (07:06 -0700)
committerNathaniel Graham <pointedstick@zoho.com>
Fri, 10 Nov 2017 16:36:03 +0000 (09:36 -0700)
Summary:
Resolves T7185

Use the new folder-stash icon introduced in https://cgit.kde.org/breeze-icons.git/commit/?id=b909a8008a7e3ffabb090bc82127ebb561f58597

Test Plan:
Tested in KDE Neon. Dolphin now uses the new icon is `kio-stash` is installed:

{F5482031}

Reviewers: elvisangelaccio, #dolphin

Reviewed By: elvisangelaccio, #dolphin

Subscribers: cfeck

Maniphest Tasks: T7185

Differential Revision: https://phabricator.kde.org/D8722

src/dolphinmainwindow.cpp

index 41c51b9dd81979b6b0574d70bf37d5df9fa28d8d..c35de766ccfd717df002025fc61e0df653b65ea3 100644 (file)
@@ -1096,7 +1096,7 @@ void DolphinMainWindow::setupActions()
     actionCollection()->setDefaultShortcut(stashSplit, Qt::CTRL | Qt::Key_S);
     stashSplit->setText(i18nc("@action:intoolbar Stash", "Stash"));
     stashSplit->setToolTip(i18nc("@info", "Opens the stash virtual directory in a split window"));
-    stashSplit->setIcon(QIcon::fromTheme(QStringLiteral("folder-visiting")));
+    stashSplit->setIcon(QIcon::fromTheme(QStringLiteral("folder-stash")));
     stashSplit->setCheckable(false);
     stashSplit->setVisible(KProtocolInfo::isKnownProtocol("stash"));
     connect(stashSplit, &QAction::triggered, this, &DolphinMainWindow::toggleSplitStash);