Skip to content

Commit

Permalink
Fix default not assumed CJS label color
Browse files Browse the repository at this point in the history
  • Loading branch information
EightSmart committed Jul 14, 2024
1 parent 410a79d commit 1d02a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AT3/AT3RadarTargetDisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ void AT3RadarTargetDisplay::OnRefresh(HDC hDC, int Phase, HKCPDisplay* Display)

// Set brush color based on state
SolidBrush aircraftBrush(colorNotAssumed);
dc.SetTextColor(colorRedundant.ToCOLORREF());
dc.SetTextColor(colorNotAssumed.ToCOLORREF());
if (fp.GetState() == FLIGHT_PLAN_STATE_ASSUMED) {
aircraftBrush.SetColor(colorAssumed);
dc.SetTextColor(colorAssumed.ToCOLORREF());
Expand Down

0 comments on commit 1d02a9a

Please sign in to comment.