diff options
Diffstat (limited to 'src/sliceitoff/display/display.py')
-rw-r--r-- | src/sliceitoff/display/display.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sliceitoff/display/display.py b/src/sliceitoff/display/display.py index 2d6605f..06b222c 100644 --- a/src/sliceitoff/display/display.py +++ b/src/sliceitoff/display/display.py @@ -22,7 +22,7 @@ class Display(): print( "DISPLAY: \n" f" {Scaling.active = }\n" - f" {Scaling.border = }\n" + f" {Scaling.borders = }\n" f" {Scaling.factor = }\n") def update(self, groups = None): @@ -30,6 +30,8 @@ class Display(): self.screen.fill(Stats.bgcolor, rect=Scaling.active) for group in groups: group.draw(self.screen) + self.screen.fill(Stats.bordercolor, rect=Scaling.borders[0]) + self.screen.fill(Stats.bordercolor, rect=Scaling.borders[1]) pygame.display.flip() def __del__(self): |