Skip to content
Snippets Groups Projects
Commit b5eac91b authored by hjk's avatar hjk
Browse files

Debugger: Re-enable thread combo box for core files


This fixes a regression introduced after 2.5

Task-number: QTCREATORBUG-9110
Change-Id: I72450d7c6797910e789f78c7478fc7dd3d6f6228
Reviewed-by: default avatarEike Ziller <eike.ziller@digia.com>
parent 567098f2
No related branches found
No related tags found
No related merge requests found
...@@ -2311,7 +2311,7 @@ void DebuggerPluginPrivate::updateState(DebuggerEngine *engine) ...@@ -2311,7 +2311,7 @@ void DebuggerPluginPrivate::updateState(DebuggerEngine *engine)
m_attachToRemoteServerAction->setEnabled(true); m_attachToRemoteServerAction->setEnabled(true);
m_attachToRunningApplication->setEnabled(true); m_attachToRunningApplication->setEnabled(true);
m_threadBox->setEnabled(state == InferiorStopOk); m_threadBox->setEnabled(state == InferiorStopOk || state == InferiorUnrunnable);
const bool isCore = engine->startParameters().startMode == AttachCore; const bool isCore = engine->startParameters().startMode == AttachCore;
const bool stopped = state == InferiorStopOk; const bool stopped = state == InferiorStopOk;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment