2 Commits

Author SHA1 Message Date
19b4f32c5a patch bump 2026-02-26 14:02:18 +00:00
1bd6c0e94f enable type_to_earch in Select widget 2026-02-26 14:02:01 +00:00
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "lottery-tui" name = "lottery-tui"
version = "1.0.1" version = "1.0.2"
description = "A terminal user interface for lottery games." description = "A terminal user interface for lottery games."
authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }] authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }]
dependencies = ["textual>=8.0.0", "loguru>=0.7.3"] dependencies = ["textual>=8.0.0", "loguru>=0.7.3"]

View File

@@ -28,6 +28,7 @@ class LotteryTUI(App):
], ],
value='lotto', value='lotto',
allow_blank=False, allow_blank=False,
type_to_search=True,
id='lottery-select', id='lottery-select',
), ),
Button('Draw', id='draw-button'), Button('Draw', id='draw-button'),