summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--size.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/size.go b/size.go
index 0d86128..0383863 100644
--- a/size.go
+++ b/size.go
@@ -355,7 +355,9 @@ func (tk *guiWidget) getFullSize() rectType {
case widget.Checkbox:
return tk.buttonFullSize()
case widget.Dropdown:
- return tk.buttonFullSize()
+ r := tk.buttonFullSize()
+ r.w1 += 7 // TODO: fix this to be real
+ return r
default:
}