summaryrefslogtreecommitdiff
path: root/redo/events_notdarwin.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/events_notdarwin.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/events_notdarwin.go')
-rw-r--r--redo/events_notdarwin.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/redo/events_notdarwin.go b/redo/events_notdarwin.go
index be9515a..1cd46ad 100644
--- a/redo/events_notdarwin.go
+++ b/redo/events_notdarwin.go
@@ -86,8 +86,8 @@ var scancodeKeys = map[uintptr]byte{
0x0B: '0',
0x0C: '-',
0x0D: '=',
- 0x0E: '\b', // seems to be safe on GTK+; TODO safe on windows?
- 0x0F: '\t', // seems to be safe on GTK+; TODO safe on windows?
+ 0x0E: '\b',
+ 0x0F: '\t',
0x10: 'q',
0x11: 'w',
0x12: 'e',
@@ -100,7 +100,7 @@ var scancodeKeys = map[uintptr]byte{
0x19: 'p',
0x1A: '[',
0x1B: ']',
- 0x1C: '\n', // seems to be safe on GTK+; TODO safe on windows?
+ 0x1C: '\n',
0x1E: 'a',
0x1F: 's',
0x20: 'd',