diff options
| author | Jeff Carr <[email protected]> | 2024-01-28 14:03:06 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-28 14:03:06 -0600 |
| commit | 2e2e68ce070a987304d3f8e4bae832b2672f7875 (patch) | |
| tree | b71d31180ee1bf1591311ace4e6d9cff1c467454 /place.go | |
| parent | dab898f0f945fc3b0a5747f38b7f22b59d539117 (diff) | |
trying to fix windows
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'place.go')
| -rw-r--r-- | place.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |
