From 6eb68a043026d0d8194c81eb859548fa8716858d Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Sun, 23 Jun 2013 08:08:57 -0400 Subject: [PATCH] Slight tweak to inactive instruction pointer highlight color. --- .../user_interface/gui/team_window/SourceView.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/apps/debugger/user_interface/gui/team_window/SourceView.cpp b/src/apps/debugger/user_interface/gui/team_window/SourceView.cpp index 4f6f1e8f0e..3e3a4f9b74 100644 --- a/src/apps/debugger/user_interface/gui/team_window/SourceView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/SourceView.cpp @@ -1116,11 +1116,10 @@ SourceView::TextView::Draw(BRect updateRect) ipMarker = dynamic_cast(marker); if (ipMarker != NULL) { - rgb_color ipColor = {96, 216, 216, 255 }; - if (!ipMarker->IsCurrentIP()) - ipColor = tint_color(ipColor, B_LIGHTEN_2_TINT); - - SetLowColor(ipColor); + if (ipMarker->IsCurrentIP()) + SetLowColor(96, 216, 216, 255); + else + SetLowColor(216, 216, 216, 255); } else SetLowColor(255, 255, 0, 255);