From b46bf9b736d90479525597d7b173c86965332e1b Mon Sep 17 00:00:00 2001 From: container1234 Date: Mon, 23 Apr 2018 00:54:09 +0900 Subject: [PATCH] Qt/Debugger: Change CodeView background colors to bright ones --- Source/Core/DolphinQt2/Debugger/CodeViewWidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt2/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt2/Debugger/CodeViewWidget.cpp index b04766f814..152a8b9273 100644 --- a/Source/Core/DolphinQt2/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt2/Debugger/CodeViewWidget.cpp @@ -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)); } }