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

Hide and show orders label

parent 67c73988
Branches
Tags
1 merge request!27Resolve "Orders"
......@@ -782,6 +782,7 @@ class PyGameGUI:
self.finished_button.hide()
self.layout_selection.show()
self.timer_label.hide()
self.orders_label.hide()
case MenuStates.Game:
self.start_button.hide()
self.back_button.show()
......@@ -789,6 +790,7 @@ class PyGameGUI:
self.finished_button.show()
self.layout_selection.hide()
self.timer_label.show()
self.orders_label.show()
case MenuStates.End:
self.start_button.hide()
self.back_button.show()
......@@ -796,6 +798,7 @@ class PyGameGUI:
self.finished_button.hide()
self.layout_selection.hide()
self.timer_label.hide()
self.orders_label.hide()
def start_button_press(self):
self.menu_state = MenuStates.Game
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment