finally found the minor missing return lines

This commit is contained in:
Jeff Carr 2025-02-01 14:02:58 -06:00
parent 417b3e5225
commit fdca4d2601
1 changed files with 4 additions and 0 deletions

View File

@ -62,12 +62,16 @@ func addWidget(n *tree.Node) {
return return
case widget.Button: case widget.Button:
nw.color = &colorButton nw.color = &colorButton
return
case widget.Checkbox: case widget.Checkbox:
nw.color = &colorCheckbox nw.color = &colorCheckbox
return
case widget.Dropdown: case widget.Dropdown:
nw.color = &colorDropdown nw.color = &colorDropdown
return
case widget.Combobox: case widget.Combobox:
nw.color = &colorCombobox nw.color = &colorCombobox
return
case widget.Box: case widget.Box:
nw.color = &colorBox nw.color = &colorBox
nw.isFake = true nw.isFake = true