mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 20:25:47 +00:00
debugger: Set paused thread color
This commit is contained in:
parent
0652d95dab
commit
33473a7e7b
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue