summaryrefslogtreecommitdiff
path: root/place.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-31 12:08:13 -0600
committerJeff Carr <[email protected]>2025-01-31 13:47:45 -0600
commit5b39848b6448c8b95764bd42146e4e13b469876e (patch)
tree358aa0540d159ea4233e82977c656afb874d1162 /place.go
parentbbdf7fefbd9d812b4db575a57d9d159d68921f7f (diff)
more helpful and easier to read debugging output
Diffstat (limited to 'place.go')
-rw-r--r--place.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/place.go b/place.go
index ca0737f..be0a145 100644
--- a/place.go
+++ b/place.go
@@ -35,7 +35,6 @@ func (w *guiWidget) placeBox(startW int, startH int) {
if w.WidgetType != widget.Box {
return
}
- // tk.dumpTree("beforebox")
newW := startW
newH := startH
@@ -58,7 +57,6 @@ func (w *guiWidget) placeBox(startW int, startH int) {
}
log.Log(INFO, "BOX END size(W,H) =", sizeW, sizeH, "new(W,H) =", newW, newH)
}
- // tk.dumpTree("afterbox")
}
func (tk *guiWidget) placeWidgets(startW int, startH int) (int, int) {