Change copy location shortcut in dolphin so as to not conflict with Konsole panel

BUG: 426461
FIXED-IN: 20.12.2
This commit is contained in:
The Imp 2021-01-13 09:28:58 +00:00 committed by Elvis Angelaccio
parent 35104c052f
commit 764861af51

View 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);