From 59a8dd38138246c63a76c5d79e5cd90ef76fde75 Mon Sep 17 00:00:00 2001 From: Jonathan Campbell Date: Fri, 29 Mar 2024 12:12:50 -0700 Subject: [PATCH] Configuration GUI: Radio buttons are not supposed to toggle when clicked, they are supposed to only enter a checked state. --- src/libs/gui_tk/gui_tk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/gui_tk/gui_tk.h b/src/libs/gui_tk/gui_tk.h index f57a58220b..01727de6da 100644 --- a/src/libs/gui_tk/gui_tk.h +++ b/src/libs/gui_tk/gui_tk.h @@ -2602,7 +2602,7 @@ class Radiobox : public BorderedWindow, public ActionEventSource { (void)y;//UNUSED if (button == Left) { - checked = !checked; + checked = true; execute(); return true; }