aboutsummaryrefslogtreecommitdiffstats
path: root/layout/box.go
diff options
context:
space:
mode:
authorClement Benard <contact@clementbenard.com>2019-07-09 17:30:30 +0200
committerClement Benard <contact@clementbenard.com>2019-07-09 17:30:30 +0200
commit24286694a5ba80cc3f54a224b62ac11c773b4985 (patch)
treee24fb5e63bf9be4ee8c85fffe4ba441c8785ecd0 /layout/box.go
parent1415586e633ee33194442f131a5a691f889c8ee5 (diff)
downloadgui-24286694a5ba80cc3f54a224b62ac11c773b4985.zip
Documenting, bug fixing and refactoring to be more in line with the project.
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
}