Skip to content

Commit

Permalink
Updated Color. Refs #14175
Browse files Browse the repository at this point in the history
  • Loading branch information
palvarezlopez committed Dec 20, 2023
1 parent 79d8ebc commit effa408
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/gui/div/GUIDottedGeometry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ GUIDottedGeometry::DottedGeometryColor::getColor(const GUIVisualizationSettings&
case DottedContourType::MOVE:
if (myColorFlag) {
myColorFlag = false;
return RGBColor::RED;
return RGBColor(220, 0, 0);
} else {
myColorFlag = true;
return RGBColor::RED.changedBrightness(-30);
return RGBColor(220, 0, 0).changedBrightness(-30);
}
case DottedContourType::OVER:
if (myColorFlag) {
Expand Down

0 comments on commit effa408

Please sign in to comment.