┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
diff options
context:
space:
mode:
authorarnav dhamija <[email protected]>2016-09-27 10:37:08 +0530
committerarnav dhamija <[email protected]>2016-09-27 10:37:08 +0530
commita097a1277a02a5dd0f6d687e8bc2c3a7ec399efd (patch)
tree7367a37fc0b8c59402ba42f781453e6cd0d5103c /src/dolphinmainwindow.cpp
parent45d90a61f8ceb36d302c90ad8d02d3ded964c92d (diff)
Changed shortcut, but need to fix async conditions
Diffstat (limited to 'src/dolphinmainwindow.cpp')
-rw-r--r--src/dolphinmainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 30498952c..ea4ff0525 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -1047,7 +1047,7 @@ void DolphinMainWindow::setupActions()
connect(split, &QAction::triggered, this, &DolphinMainWindow::toggleSplitView);
QAction* stashSplit = actionCollection()->addAction(QStringLiteral("split_stash"));
- actionCollection()->setDefaultShortcut(stashSplit, Qt::Key_F2);
+ 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")));