┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Graham <[email protected]>2019-08-24 08:16:42 -0600
committerNate Graham <[email protected]>2019-08-24 08:16:42 -0600
commit7a83a680a5cded3d6a3bdb48cf30bac38439977e (patch)
treec4d796765c9f9d044ad6452e1ed100d604624dea
parent6dc0e81ef185a56c860c26688d6ec4229b8e62ae (diff)
Correct "New Window" tooltip
BUG: 411215 FIXED-IN: 19.12.0
-rw-r--r--src/dolphinmainwindow.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index ad193b051..1da823e23 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -1156,6 +1156,7 @@ void DolphinMainWindow::setupActions()
QAction* newWindow = KStandardAction::openNew(this, &DolphinMainWindow::openNewMainWindow, actionCollection());
newWindow->setText(i18nc("@action:inmenu File", "New &Window"));
+ newWindow->setToolTip(i18nc("@info", "Open a new Dolphin window"));
newWindow->setWhatsThis(xi18nc("@info:whatsthis", "This opens a new "
"window just like this one with the current location and view."
"<nl/>You can drag and drop items between windows."));