Skip to content

Commit 45ec990

Browse files
committed
Remove copy shortcuts for now (because they don't work)
1 parent e9c5ec7 commit 45ec990

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main_context_menu.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ MainContextMenu::MainContextMenu(QWidget * parent, Mediator & mediator, Grid & g
3232
, m_mediator(mediator)
3333
, m_copyPaste(copyPaste)
3434
{
35-
m_copyNodeAction->setShortcut(QKeySequence("Ctrl+C")); // Note: Couldn't make this work
3635
QObject::connect(m_copyNodeAction, &QAction::triggered, [this] {
3736
juzzlin::L().debug() << "Copy node triggered";
3837
m_copyPaste.copy(*m_mediator.selectedNode());
3938
});
4039
m_mainContextMenuActions[Mode::All].push_back(m_copyNodeAction);
4140

42-
m_pasteNodeAction->setShortcut(QKeySequence("Ctrl+V")); // Note: Couldn't make this work
4341
QObject::connect(m_pasteNodeAction, &QAction::triggered, [this] {
4442
juzzlin::L().debug() << "Paste node triggered";
4543
if (!m_copyPaste.isEmpty())

0 commit comments

Comments
 (0)