Debugger: Fix stack view update after switching threads with LLDB

Change-Id: I8e870a44e07dd069db5f61ae6ffd75c517e2d445
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-02-27 15:27:34 +01:00
parent 1336502f58
commit 2ffe50c208
2 changed files with 1 additions and 1 deletions

View File

@@ -1607,7 +1607,6 @@ class Dumper(DumperBase):
def selectThread(self, args): def selectThread(self, args):
self.process.SetSelectedThreadByID(args['id']) self.process.SetSelectedThreadByID(args['id'])
self.reportData()
def requestModuleSymbols(self, frame): def requestModuleSymbols(self, frame):
self.handleCommand("target module list " + frame) self.handleCommand("target module list " + frame)

View File

@@ -551,6 +551,7 @@ void LldbEngine::selectThread(ThreadId threadId)
DebuggerCommand cmd("selectThread"); DebuggerCommand cmd("selectThread");
cmd.arg("id", threadId.raw()); cmd.arg("id", threadId.raw());
runCommand(cmd); runCommand(cmd);
updateAll();
} }
bool LldbEngine::stateAcceptsBreakpointChanges() const bool LldbEngine::stateAcceptsBreakpointChanges() const