summaryrefslogtreecommitdiff
path: root/place.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-28 14:03:06 -0600
committerJeff Carr <[email protected]>2024-01-28 14:03:06 -0600
commit2e2e68ce070a987304d3f8e4bae832b2672f7875 (patch)
treeb71d31180ee1bf1591311ace4e6d9cff1c467454 /place.go
parentdab898f0f945fc3b0a5747f38b7f22b59d539117 (diff)
trying to fix windows
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'place.go')
-rw-r--r--place.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/place.go b/place.go
index f826472..53a0995 100644
--- a/place.go
+++ b/place.go
@@ -65,7 +65,7 @@ func (tk *guiWidget) placeWidgets(startW int, startH int) {
case widget.Group:
// move the group to the parent's next location
tk.gocuiSetWH(startW, startH)
- tk.showWidgetPlacement("group()")
+ tk.dumpTree("start place")
newW := startW + me.GroupPadW
newH := startH + 3 // normal hight of the group label
@@ -78,7 +78,9 @@ func (tk *guiWidget) placeWidgets(startW int, startH int) {
// increment straight down
newH += h
+ log.Log(INFO, "REAL HIGHT ADDED", h, "newH", newH)
}
+ tk.dumpTree("end place")
default:
tk.gocuiSetWH(startW, startH)
// n.moveTo(startW, startH)