Skip to content

Commit

Permalink
Configuration GUI: Radio buttons are not supposed to toggle when clic…
Browse files Browse the repository at this point in the history
…ked, they are supposed to only enter a checked state.
  • Loading branch information
joncampbell123 committed Mar 29, 2024
1 parent 09ae256 commit 59a8dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/gui_tk/gui_tk.h
Original file line number Diff line number Diff line change
Expand Up @@ -2602,7 +2602,7 @@ class Radiobox : public BorderedWindow, public ActionEventSource {
(void)y;//UNUSED

if (button == Left) {
checked = !checked;
checked = true;
execute();
return true;
}
Expand Down

0 comments on commit 59a8dd3

Please sign in to comment.