InputMultilineText
Closed this issue · 2 comments
hrkrx commented
When using InputMultilineText
with a maximum length of uint.MaxValue
it doesn't recognize keystrokes and fails silently.
psydack commented
Hello.
That parameter is a byte size
not char size
. Try this: uint.MaxValue / 16
.
Because this is pre allocated, try to never put the max value because it can cause some performance issues.
Thank you for reporting.
hrkrx commented
Thanks for the fast reply :)