Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kivy force at least one checkbox

Background

I've grouped 2 CheckBoxes in Kivy using group: 'my-group'.

The problem

If I click on the selected CheckBox, it turns off and no option is selected. Both CheckBoxes are turned off.

My question

How can I force at least one of the CheckBoxes to be active?

like image 752
Michael Avatar asked Feb 09 '23 12:02

Michael


1 Answers

Found it!

allow_no_selection: False
like image 90
Michael Avatar answered Mar 29 '23 21:03

Michael