debugger: Set paused thread color

This commit is contained in:
Luke Street 2018-12-04 02:25:34 -05:00
parent 3e75175d02
commit a3d78b77f8
1 changed files with 2 additions and 1 deletions

View File

@ -264,8 +264,9 @@ QColor WaitTreeThread::GetColor() const {
case Kernel::ThreadStatus::Running:
return QColor(Qt::GlobalColor::darkGreen);
case Kernel::ThreadStatus::Ready:
case Kernel::ThreadStatus::Paused:
return QColor(Qt::GlobalColor::darkBlue);
case Kernel::ThreadStatus::Paused:
return QColor(Qt::GlobalColor::lightGray);
case Kernel::ThreadStatus::WaitHLEEvent:
case Kernel::ThreadStatus::WaitIPC:
return QColor(Qt::GlobalColor::darkRed);