summaryrefslogtreecommitdiff
path: root/redo/zz_test.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-12 20:08:53 -0400
committerPietro Gagliardi <[email protected]>2014-08-12 20:08:53 -0400
commit6dcda6aafaa62e085e033038fce2e2e7ef6e25d4 (patch)
tree98b4bd57cf908d7bcdee8c656cf79310dbb18b34 /redo/zz_test.go
parent9b35def046f8e3dd3ce64ff20fbf4aa03625e239 (diff)
Determined that Backspace, Tab, and Enter work in Areas on Windows (though more TODOs due to dialog message craziness).
Diffstat (limited to 'redo/zz_test.go')
-rw-r--r--redo/zz_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/zz_test.go b/redo/zz_test.go
index 525447e..9747700 100644
--- a/redo/zz_test.go
+++ b/redo/zz_test.go
@@ -54,7 +54,7 @@ func (a *areaHandler) Paint(r image.Rectangle) *image.RGBA {
return i
}
func (a *areaHandler) Mouse(me MouseEvent) { fmt.Printf("%#v\n", me) }
-func (a *areaHandler) Key(ke KeyEvent) { fmt.Printf("%#v\n", ke) }
+func (a *areaHandler) Key(ke KeyEvent) { fmt.Printf("%#v %q\n", ke, ke.Key) }
func (tw *testwin) make(done chan struct{}) {
tw.t = NewTab()