Skip to content
Snippets Groups Projects
Commit 401794d4 authored by Fabian Heinrich's avatar Fabian Heinrich
Browse files

Fixed border for all layouts

parent 05b6cd82
No related branches found
No related tags found
1 merge request!35Resolve "Drawing order of counters and things on top"
Pipeline #44955 passed
...@@ -367,7 +367,7 @@ class PyGameGUI: ...@@ -367,7 +367,7 @@ class PyGameGUI:
config=self.visualization_config, config=self.visualization_config,
) )
border = self.visualization_config["GameWindow"]["black_border_size"] border = self.visualization_config["GameWindow"]["game_border_size"]
border_rect = pygame.Rect( border_rect = pygame.Rect(
self.window_width // 2 - (self.game_width // 2) - border, self.window_width // 2 - (self.game_width // 2) - border,
self.window_height // 2 - (self.game_height // 2) - border, self.window_height // 2 - (self.game_height // 2) - border,
...@@ -376,9 +376,9 @@ class PyGameGUI: ...@@ -376,9 +376,9 @@ class PyGameGUI:
) )
pygame.draw.rect( pygame.draw.rect(
self.main_window, self.main_window,
colors["black"], colors[self.visualization_config["GameWindow"]["game_border_color"]],
border_rect, border_rect,
width=self.visualization_config["GameWindow"]["black_border_size"], width=border,
) )
self.update_score_label(state) self.update_score_label(state)
......
...@@ -12,7 +12,8 @@ GameWindow: ...@@ -12,7 +12,8 @@ GameWindow:
order_bar_height: 100 order_bar_height: 100
order_size: 50 order_size: 50
black_border_size: 1 game_border_size: 1
game_border_color: black
background_color: lemonchiffon1 background_color: lemonchiffon1
Kitchen: Kitchen:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment