mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Qt/Debugger: Change CodeView background colors to bright ones
This commit is contained in:
@ -143,11 +143,11 @@ void CodeViewWidget::Update()
|
|||||||
item->setData(Qt::UserRole, addr);
|
item->setData(Qt::UserRole, addr);
|
||||||
|
|
||||||
if (color != 0xFFFFFF)
|
if (color != 0xFFFFFF)
|
||||||
item->setBackground(QColor(color).darker(200));
|
item->setBackground(QColor(color).darker(110));
|
||||||
|
|
||||||
if (addr == pc && item != bp_item)
|
if (addr == pc && item != bp_item)
|
||||||
{
|
{
|
||||||
item->setBackground(Qt::darkGreen);
|
item->setBackground(QColor(Qt::green).darker(110));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user