better, but still wrong dropdown menu sizes

This commit is contained in:
Jeff Carr 2025-03-02 17:44:17 -06:00
parent 04406b3561
commit 3e7287baea
1 changed files with 3 additions and 1 deletions

View File

@ -355,7 +355,9 @@ func (tk *guiWidget) getFullSize() rectType {
case widget.Checkbox: case widget.Checkbox:
return tk.buttonFullSize() return tk.buttonFullSize()
case widget.Dropdown: case widget.Dropdown:
return tk.buttonFullSize() r := tk.buttonFullSize()
r.w1 += 7 // TODO: fix this to be real
return r
default: default:
} }