diff options
| author | Nate Graham <[email protected]> | 2018-12-18 22:03:16 -0700 |
|---|---|---|
| committer | Nate Graham <[email protected]> | 2018-12-18 22:03:16 -0700 |
| commit | f6549f08ea0797bcdf5d584ce41005a741db12cb (patch) | |
| tree | b32b6d670de223b8c3582bd4526bf0c4b8aacf43 /src | |
| parent | 05437365e74d69cb8653b5b0f1d390bf7ffa3506 (diff) | |
Use correct icon for the "New Window" menu item
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 1 |
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"))); |
