diff --git a/upptst/TestChStyle/main.cpp b/upptst/TestChStyle/main.cpp index 2b5b53b87..e1b1b3be4 100644 --- a/upptst/TestChStyle/main.cpp +++ b/upptst/TestChStyle/main.cpp @@ -25,6 +25,8 @@ TestChStyle::TestChStyle() bar.Add(false, "Disabled", [] {}); static bool check; bar.Add("Check", [] { check = !check; }).Check(check); + static bool radio; + bar.Add("Radio", [] { radio = !radio; }).Radio(radio); bar.Separator(); bar.Sub("Submenu", [](Bar& bar) { bar.Add("Something", []{}); }); });