┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNate Graham <[email protected]>2018-12-18 22:03:16 -0700
committerNate Graham <[email protected]>2018-12-18 22:03:16 -0700
commitf6549f08ea0797bcdf5d584ce41005a741db12cb (patch)
treeb32b6d670de223b8c3582bd4526bf0c4b8aacf43 /src
parent05437365e74d69cb8653b5b0f1d390bf7ffa3506 (diff)
Use correct icon for the "New Window" menu item
Diffstat (limited to 'src')
-rw-r--r--src/dolphinmainwindow.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 3ff2ad1e9..cd4800b7d 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -1037,6 +1037,7 @@ void DolphinMainWindow::setupActions()
QAction* newWindow = KStandardAction::openNew(this, &DolphinMainWindow::openNewMainWindow, actionCollection());
newWindow->setText(i18nc("@action:inmenu File", "New &Window"));
+ newWindow->setIcon(QIcon::fromTheme(QStringLiteral("window-new")));
QAction* newTab = actionCollection()->addAction(QStringLiteral("new_tab"));
newTab->setIcon(QIcon::fromTheme(QStringLiteral("tab-new")));