aboutsummaryrefslogtreecommitdiffstats
path: root/layout/box.go
diff options
context:
space:
mode:
Diffstat (limited to 'layout/box.go')
-rw-r--r--layout/box.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/layout/box.go b/layout/box.go
index 4e16a76..2fd29cf 100644
--- a/layout/box.go
+++ b/layout/box.go
@@ -4,7 +4,6 @@ import (
"image"
"image/color"
"image/draw"
- "log"
"github.com/faiface/gui"
)
@@ -94,7 +93,5 @@ func (g *Box) Lay(bounds image.Rectangle) []image.Rectangle {
X += item + g.Gap
}
}
-
- log.Print(ret)
return ret
}