From 294213e0a1e1fb26d0448908a4a13c2503027745 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Gir=C3=A3o=20Serr=C3=A3o?= <5621605+rodrigogiraoserrao@users.noreply.github.com> Date: Mon, 6 Mar 2023 12:04:22 +0000 Subject: [PATCH] Update radio_set_changed.py (#1947) In the aftermath of #1935 and #1940 this fell through the cracks. --- docs/examples/widgets/radio_set_changed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/widgets/radio_set_changed.py b/docs/examples/widgets/radio_set_changed.py index be0ecbab2..c360cb868 100644 --- a/docs/examples/widgets/radio_set_changed.py +++ b/docs/examples/widgets/radio_set_changed.py @@ -35,7 +35,7 @@ class RadioSetChangedApp(App[None]): f"Pressed button label: {event.pressed.label}" ) self.query_one("#index", Label).update( - f"Pressed button index: {event.input.pressed_index}" + f"Pressed button index: {event.radio_set.pressed_index}" )