diff --git a/qt_ui/uiconstants.py b/qt_ui/uiconstants.py index c73777f8..bfd9f94c 100644 --- a/qt_ui/uiconstants.py +++ b/qt_ui/uiconstants.py @@ -59,8 +59,8 @@ COLORS: Dict[str, QColor] = { "orange": QColor(254, 125, 10), "night_overlay": QColor(12, 20, 69), "dawn_dust_overlay": QColor(46, 38, 85), - "white_transparent": QColor(255, 255, 255, 30), - "grey_transparent": QColor(150, 150, 150, 20), + "white_transparent": QColor(255, 255, 255, 35), + "grey_transparent": QColor(150, 150, 150, 30), } CP_SIZE = 24 diff --git a/qt_ui/widgets/map/QMapControlPoint.py b/qt_ui/widgets/map/QMapControlPoint.py index 0be59513..f993c73a 100644 --- a/qt_ui/widgets/map/QMapControlPoint.py +++ b/qt_ui/widgets/map/QMapControlPoint.py @@ -96,9 +96,6 @@ class QMapControlPoint(QGraphicsRectItem): @property def pen_color(self) -> QColor: - if self.parent.game.player_country in db.BLUEFOR_FACTIONS: - return self.model.captured and CONST.COLORS["white"] or CONST.COLORS["white"] - else: return self.model.captured and CONST.COLORS["white"] or CONST.COLORS["white"] def openBaseMenu(self):