Qt/Debugger: Change CodeView background colors to bright ones

This commit is contained in:
container1234 2018-04-23 00:54:09 +09:00
parent 41844c1cc5
commit b46bf9b736
1 changed files with 2 additions and 2 deletions

View File

@ -143,11 +143,11 @@ void CodeViewWidget::Update()
item->setData(Qt::UserRole, addr);
if (color != 0xFFFFFF)
item->setBackground(QColor(color).darker(200));
item->setBackground(QColor(color).darker(110));
if (addr == pc && item != bp_item)
{
item->setBackground(Qt::darkGreen);
item->setBackground(QColor(Qt::green).darker(110));
}
}