diff options
author | Viljami Ilola <+@hix.fi> | 2024-03-20 17:46:10 +0200 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-03-20 17:46:10 +0200 |
commit | 975e5dca49fb09fe2f762462f1c337c0d63735bf (patch) | |
tree | 4c837b346d7b7e4a9246c1be846f48d787a327ba /src/sliceitoff/display/display.py | |
parent | 398eebe7829622c6983cb28528f2208b4d596f32 (diff) |
exploding text
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): |