Skip to content
Snippets Groups Projects
Commit a3d78b77 authored by Luke Street's avatar Luke Street
Browse files

debugger: Set paused thread color

parent 3e75175d
No related branches found
No related tags found
No related merge requests found
...@@ -264,8 +264,9 @@ QColor WaitTreeThread::GetColor() const { ...@@ -264,8 +264,9 @@ QColor WaitTreeThread::GetColor() const {
case Kernel::ThreadStatus::Running: case Kernel::ThreadStatus::Running:
return QColor(Qt::GlobalColor::darkGreen); return QColor(Qt::GlobalColor::darkGreen);
case Kernel::ThreadStatus::Ready: case Kernel::ThreadStatus::Ready:
case Kernel::ThreadStatus::Paused:
return QColor(Qt::GlobalColor::darkBlue); return QColor(Qt::GlobalColor::darkBlue);
case Kernel::ThreadStatus::Paused:
return QColor(Qt::GlobalColor::lightGray);
case Kernel::ThreadStatus::WaitHLEEvent: case Kernel::ThreadStatus::WaitHLEEvent:
case Kernel::ThreadStatus::WaitIPC: case Kernel::ThreadStatus::WaitIPC:
return QColor(Qt::GlobalColor::darkRed); return QColor(Qt::GlobalColor::darkRed);
......
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