unified events and messages

This commit is contained in:
Will McGugan
2022-08-10 13:09:38 +01:00
parent d6079deb90
commit b3eb543e38
23 changed files with 137 additions and 230 deletions

View File

@@ -48,7 +48,7 @@ class InputApp(App[str]):
)
self.mount(text_area=TextArea())
def handle_changed(self, event: TextWidgetBase.Changed) -> None:
def on_text_widget_base_changed(self, event: TextWidgetBase.Changed) -> None:
try:
value = float(event.value)
except ValueError: