diff options
Diffstat (limited to 'redo/zz_test.go')
| -rw-r--r-- | redo/zz_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/redo/zz_test.go b/redo/zz_test.go index 59f577b..0dc1421 100644 --- a/redo/zz_test.go +++ b/redo/zz_test.go @@ -50,8 +50,8 @@ func (a *areaHandler) Paint(r image.Rectangle) *image.RGBA { draw.Draw(i, r, &image.Uniform{color.RGBA{128,0,128,255}}, image.ZP, draw.Src) return i } -func (a *areaHandler) Mouse(me MouseEvent) bool { fmt.Printf("%#v\n", me); return false } -func (a *areaHandler) Key(ke KeyEvent) bool { fmt.Printf("%#v\n", ke); return false } +func (a *areaHandler) Mouse(me MouseEvent) { fmt.Printf("%#v\n", me) } +func (a *areaHandler) Key(ke KeyEvent) { fmt.Printf("%#v\n", ke) } func (tw *testwin) make(done chan struct{}) { tw.t = NewTab() |
