summaryrefslogtreecommitdiffstats
path: root/src/osd/modules/debugger/qt/dasmwindow.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-06-09 19:26:39 +1000
committer Vas Crabb <vas@vastheman.com>2016-06-09 19:26:39 +1000
commit8d4dbe3747b468558998968ebe0b1bf1c78169ca (patch)
tree573f0be7ab7e5f7af74952fc4615c10114459f29 /src/osd/modules/debugger/qt/dasmwindow.cpp
parentf005d3eff8548fe82c69ad01d7f98affe525f76b (diff)
Fix keyboard shortcus for disassembly comments pane [Vas Crabb]
* Win32 previously recognised Ctrl+N but menu incorrectly showed Ctrl+M * Qt showed Ctrl+C but it was swallowed by text editing and didn't work * Ctrl+N is now shown/used by Win32 and Qt (matches Cmd-N on OS X)
Diffstat (limited to 'src/osd/modules/debugger/qt/dasmwindow.cpp')
-rw-r--r--src/osd/modules/debugger/qt/dasmwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/debugger/qt/dasmwindow.cpp b/src/osd/modules/debugger/qt/dasmwindow.cpp
index 7e6b134aef5..a48d900beac 100644
--- a/src/osd/modules/debugger/qt/dasmwindow.cpp
+++ b/src/osd/modules/debugger/qt/dasmwindow.cpp
@@ -99,7 +99,7 @@ DasmWindow::DasmWindow(running_machine* machine, QWidget* parent) :
rightActComments->setActionGroup(rightBarGroup);
rightActRaw->setShortcut(QKeySequence("Ctrl+R"));
rightActEncrypted->setShortcut(QKeySequence("Ctrl+E"));
- rightActComments->setShortcut(QKeySequence("Ctrl+C"));
+ rightActComments->setShortcut(QKeySequence("Ctrl+N"));
rightActRaw->setChecked(true);
connect(rightBarGroup, &QActionGroup::triggered, this, &DasmWindow::rightBarChanged);