1-reproducible-board #2

Merged
panki merged 7 commits from 1-reproducible-board into master 2024-05-09 18:44:46 +02:00
Showing only changes of commit 3a266e3bfc - Show all commits

View File

@ -96,7 +96,7 @@ class BingoDisplay(Static):
self.input_field.value = str(self.board.seed)
def on_input_submitted(self, event: Input.Submitted) -> None:
if event.validation_result:
if event.validation_result.is_valid:
self.board.roll_board(int(event.value))
class BingoBoard(Widget):