From 20da9750f49cc57ee9d66955da40df1a7b104f57 Mon Sep 17 00:00:00 2001 From: peterhinch Date: Tue, 25 Apr 2023 07:07:34 +0100 Subject: [PATCH] README.md: Fix iss 29 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f4ec0d..2a77036 100644 --- a/README.md +++ b/README.md @@ -1404,7 +1404,7 @@ table = [ {'text' : '4', 'args' : ['4']}, ] col = 0 -rb = RadioButtons(callback, BLUE) # color of selected button +rb = RadioButtons(BLUE, callback) # color of selected button for t in table: rb.add_button(wri, 10, col, textcolor = WHITE, fgcolor = LIGHTBLUE, height = 40, **t)