forked from qt-creator/qt-creator
Fixes: debugger: make "always all" the default for loading debug
information Details: the user should make a conscious decision to switch it off
This commit is contained in:
@@ -943,11 +943,11 @@ void DebuggerPlugin::readSettings()
|
|||||||
m->m_useToolTips = s->value("UseToolTips", false).toBool();
|
m->m_useToolTips = s->value("UseToolTips", false).toBool();
|
||||||
|
|
||||||
m->m_pluginAllBreakpoints =
|
m->m_pluginAllBreakpoints =
|
||||||
s->value("AllPluginBreakpoints", false).toBool();
|
s->value("AllPluginBreakpoints", true).toBool();
|
||||||
m->m_pluginSelectedBreakpoints =
|
m->m_pluginSelectedBreakpoints =
|
||||||
s->value("SelectedPluginBreakpoints", false).toBool();
|
s->value("SelectedPluginBreakpoints", false).toBool();
|
||||||
m->m_pluginNoBreakpoints =
|
m->m_pluginNoBreakpoints =
|
||||||
s->value("NoPluginBreakpoints", true).toBool();
|
s->value("NoPluginBreakpoints", false).toBool();
|
||||||
m->m_pluginSelectedBreakpointsPattern =
|
m->m_pluginSelectedBreakpointsPattern =
|
||||||
s->value("SelectedPluginBreakpointsPattern").toString();
|
s->value("SelectedPluginBreakpointsPattern").toString();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user