I created a checkbox that adds each line created to it one by one. This allows for unlimited options that are created by the user one by one. I’ve run into a problem where I cannot connect it to a toggle function which would detect when the state of the checkbox(checked or unchecked) and change the value for its “checked” key to true/false. This is because the toggle function requires the toggle signal which I cannot reproduce dynamically. I tried using connect this way: child.connect(“toggled”, self, “_on_check_box_toggled”)