From 23c254a180bbba177974c6fb877c309b2787857c Mon Sep 17 00:00:00 2001 From: Felix Pankratz Date: Sat, 18 May 2024 15:46:30 +0200 Subject: [PATCH] enter to select --- BingoBoard.py | 2 ++ 1 file changed, 2 insertions(+) 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)