diff options
| author | Clement Benard <contact@clementbenard.com> | 2019-07-09 17:30:30 +0200 |
|---|---|---|
| committer | Clement Benard <contact@clementbenard.com> | 2019-07-09 17:30:30 +0200 |
| commit | 24286694a5ba80cc3f54a224b62ac11c773b4985 (patch) | |
| tree | e24fb5e63bf9be4ee8c85fffe4ba441c8785ecd0 /layout/box.go | |
| parent | 1415586e633ee33194442f131a5a691f889c8ee5 (diff) | |
| download | gui-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.go | 3 |
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 } |