You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Windows 10, using the hardcoded toggleconsole keys, grave accent'`' and tilde'~' will sometimes enter these characters into the input line. I made a cheap fix for myself by adding if ( ch == '`' ) return; to the Field_CharEvent function, but I don't know if this would lead to other issues.
The text was updated successfully, but these errors were encountered:
Field_CharEvent is called only when SDL Text mode is enabled. Seems that on Windows 10 text mode is being enabled too early, so '`' or '~' appears in that event, instead of key event.
On Windows 10, using the hardcoded toggleconsole keys, grave accent
'`'
and tilde'~'
will sometimes enter these characters into the input line. I made a cheap fix for myself by addingif ( ch == '`' ) return;
to the Field_CharEvent function, but I don't know if this would lead to other issues.The text was updated successfully, but these errors were encountered: