From df2659787c7969822a7f4a91cabe54a9994a4d09 Mon Sep 17 00:00:00 2001 From: Donnie Date: Mon, 29 Jun 2020 17:31:35 -0400 Subject: [PATCH] adjust map colors --- qt_ui/uiconstants.py | 4 ++-- qt_ui/widgets/map/QMapControlPoint.py | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) 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):