forked from qt-creator/qt-creator
debugger: create a disassembler view as main editor
"Stepping instruction wise" and "display disassembler" mode is now toggled by a single action. This also allows to re-use F10 and F11 as keyboard shortcut. Missing: caching of disassembler output, removal of old disassembler view.
This commit is contained in:
@@ -151,6 +151,13 @@ DebuggerSettings *DebuggerSettings::instance()
|
||||
item->setDefaultValue(false);
|
||||
instance->insertItem(LogTimeStamps, item);
|
||||
|
||||
item = new SavedAction(instance);
|
||||
item->setText(tr("Step by instruction"));
|
||||
item->setCheckable(true);
|
||||
item->setDefaultValue(false);
|
||||
item->setIcon(QIcon(":/debugger/images/debugger_stepoverproc_small.png"));
|
||||
instance->insertItem(StepByInstruction, item);
|
||||
|
||||
//
|
||||
// Locals & Watchers
|
||||
//
|
||||
|
Reference in New Issue
Block a user