diff options
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) |
