summaryrefslogtreecommitdiff
path: root/place.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-05 17:53:57 -0600
committerJeff Carr <[email protected]>2025-02-05 17:53:57 -0600
commit70a742c98acfe8979bb3c040abd6030388e61542 (patch)
tree6c15f1496c2979e9a6800dd06a1677171d97bc89 /place.go
parent546a4e022b91d1766ee31334fc66ff7af7d410cf (diff)
move up the primary box
Diffstat (limited to 'place.go')
-rw-r--r--place.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/place.go b/place.go
index 98e9c78..450fec4 100644
--- a/place.go
+++ b/place.go
@@ -79,8 +79,8 @@ func (tk *guiWidget) placeWidgets(startW int, startH int) (int, int) {
case widget.Window:
tk.full.w0 = startW
tk.full.h0 = startH
- startW += 4
- startH += 4
+ startW += -2
+ startH += 3
for _, child := range tk.children {
child.placeWidgets(startW, startH)
sizeW, _ := child.Size()