debugger: deactivate thread window operations during stepping

This commit is contained in:
hjk
2011-04-18 16:40:59 +02:00
parent ed30a3f724
commit 8afd8b8614
3 changed files with 34 additions and 2 deletions

View File

@@ -225,6 +225,7 @@ public slots:
void scheduleResetLocation()
{
m_stackHandler.scheduleResetLocation();
m_threadsHandler.scheduleResetLocation();
m_disassemblerAgent.scheduleResetLocation();
m_locationTimer.setSingleShot(true);
m_locationTimer.start(80);
@@ -235,6 +236,7 @@ public slots:
m_locationTimer.stop();
m_locationMark.reset();
m_stackHandler.resetLocation();
m_threadsHandler.resetLocation();
m_disassemblerAgent.resetLocation();
}