From ea8a29da5faae71343ffd16556d0c4eac434b428 Mon Sep 17 00:00:00 2001 From: Mike Cifelli <1836280-mike-cifelli@users.noreply.gitlab.com> Date: Fri, 6 Jan 2023 10:05:26 -0500 Subject: [PATCH] Fix open door display --- chutney/garage/garage_display.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chutney/garage/garage_display.py b/chutney/garage/garage_display.py index 62624b9..0b3614a 100644 --- a/chutney/garage/garage_display.py +++ b/chutney/garage/garage_display.py @@ -52,8 +52,8 @@ class GarageDisplay: self.symbolDisplay.displaySquare( x=column, y=self.topRow, - outlineColor=self.closedOutlineColor, - fillColor=self.closedFillColor + outlineColor=self.openOutlineColor, + fillColor=self.openFillColor ) def showClosedDoor(self, column):