diff --git a/BingoBoard.py b/BingoBoard.py index 389488e..0acf456 100644 --- a/BingoBoard.py +++ b/BingoBoard.py @@ -88,6 +88,8 @@ class BingoBoard(Widget): self.cursor_x -= 1 if self.cursor_x > 0 else 0 case 'right': self.cursor_x += 1 if self.cursor_x < 4 else 0 + case 'enter': + fields[self.fieldnum_from_cursor()].on_click() fields[self.fieldnum_from_cursor()].set_highlighted(True)