diff options
author | 2016-06-09 19:26:39 +1000 | |
---|---|---|
committer | 2016-06-09 19:26:39 +1000 | |
commit | 8d4dbe3747b468558998968ebe0b1bf1c78169ca (patch) | |
tree | 573f0be7ab7e5f7af74952fc4615c10114459f29 /src/osd/modules/debugger/qt/dasmwindow.cpp | |
parent | f005d3eff8548fe82c69ad01d7f98affe525f76b (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.cpp | 2 |
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); |