aboutsummaryrefslogtreecommitdiffstats
path: root/examples/layout/button.go
diff options
context:
space:
mode:
Diffstat (limited to 'examples/layout/button.go')
-rw-r--r--examples/layout/button.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/examples/layout/button.go b/examples/layout/button.go
index 6c907e3..0693e06 100644
--- a/examples/layout/button.go
+++ b/examples/layout/button.go
@@ -4,7 +4,6 @@ import (
"image"
"image/color"
"image/draw"
- "log"
"github.com/faiface/gui"
"github.com/faiface/gui/win"
@@ -39,7 +38,6 @@ func Button(env gui.Env, theme *Theme, text string, action func()) {
switch e := e.(type) {
case gui.Resize:
r = e.Rectangle
- log.Print("button ", e)
env.Draw() <- redraw(r, over, pressed)
case win.MoDown: