forked from qt-creator/qt-creator
Debugger: Add ability to hide view columns
Not perfect, e.g. one would probably expect the items to appear in the context menu of the header views, too, not just on the main background of the view, but better than nothing. Task-number: QTCREATORBUG-23342 Change-Id: Ifdc44dcfd390112faa7b15bb8a51d809e42d7b29 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -541,24 +541,6 @@ DebuggerSettings::DebuggerSettings()
|
||||
item->setDefaultValue(true);
|
||||
insertItem(UseToolTipsInStackView, item);
|
||||
|
||||
item = new SavedAction;
|
||||
item->setSettingsKey(debugModeGroup, "UseAddressInBreakpointsView");
|
||||
item->setText(tr("Show Address Data in Breakpoints View when Debugging"));
|
||||
item->setToolTip(tr("<p>Checking this will show a column with address "
|
||||
"information in the breakpoint view during debugging."));
|
||||
item->setCheckable(true);
|
||||
item->setDefaultValue(false);
|
||||
insertItem(UseAddressInBreakpointsView, item);
|
||||
|
||||
item = new SavedAction;
|
||||
item->setSettingsKey(debugModeGroup, "UseAddressInStackView");
|
||||
item->setText(tr("Show Address Data in Stack View when Debugging"));
|
||||
item->setToolTip(tr("<p>Checking this will show a column with address "
|
||||
"information in the stack view during debugging."));
|
||||
item->setCheckable(true);
|
||||
item->setDefaultValue(false);
|
||||
insertItem(UseAddressInStackView, item);
|
||||
|
||||
item = new SavedAction;
|
||||
item->setSettingsKey(debugModeGroup, "SkipKnownFrames");
|
||||
item->setText(tr("Skip Known Frames"));
|
||||
|
||||
Reference in New Issue
Block a user