about summary refs log tree commit diff stats
path: root/Manual_tests.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-06-23 11:41:29 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-06-23 11:41:29 -0700
commitda9d9486155b38a4099694b0eb48f6e997ab736d (patch)
tree00713d227cb764712e8007559a65789cec2cd960 /Manual_tests.md
parentcb99ac300c851024c602921f3bb819c14e32aa83 (diff)
downloadtext.love-da9d9486155b38a4099694b0eb48f6e997ab736d.tar.gz
record one more case I can't automatically detect
Diffstat (limited to 'Manual_tests.md')
-rw-r--r--Manual_tests.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/Manual_tests.md b/Manual_tests.md
index 8d4d410..75b37d8 100644
--- a/Manual_tests.md
+++ b/Manual_tests.md
@@ -15,3 +15,8 @@ Lua is dynamically typed. Tests can't patch over lack of type-checking.
 * Some ADT/interface support would be helpful in keeping per-line state in
   sync. Any change to line data should clear line `fragments` and
   `screen_line_starting_pos`.
+
+* Some inputs get processed in love.textinput and some in love.keypressed.
+  Several bugs have arisen due to destructive interference between the two for
+  some key chord. I wish I could guarantee that the two sets are disjoint. But
+  perhaps I'm not thinking about this right.