]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Change copy location shortcut in dolphin so as to not conflict with Konsole panel
authorThe Imp <nishith.khanna@gmail.com>
Wed, 13 Jan 2021 09:28:58 +0000 (09:28 +0000)
committerElvis Angelaccio <elvis.angelaccio@kde.org>
Sat, 16 Jan 2021 18:15:20 +0000 (19:15 +0100)
BUG: 426461
FIXED-IN: 20.12.2

src/views/dolphinviewactionhandler.cpp

index a2cb89a585f2458502ee967c06b81bca69c8089c..f3e3f95a30cbf3751f99537555eca0e72d967dc1 100644 (file)
@@ -149,7 +149,7 @@ void DolphinViewActionHandler::createActions()
                                 ));
 
     copyPathAction->setIcon(QIcon::fromTheme(QStringLiteral("edit-copy")));
-    m_actionCollection->setDefaultShortcuts(copyPathAction, {Qt::CTRL + Qt::SHIFT + Qt::Key_C});
+    m_actionCollection->setDefaultShortcuts(copyPathAction, {Qt::CTRL | Qt::ALT | Qt::Key_C});
     connect(copyPathAction, &QAction::triggered, this, &DolphinViewActionHandler::slotCopyPath);