Closed Defero200 closed 7 years ago
Are you perhaps holding the key down slightly too long? I can't duplicate this, but I've noticed that the key repeat delay is shorter than the default Windows one.
Then it has to be the repeat delay.
Initial key repeat is roughly halve of what it is for my windows default setting (its 200 ms, default is ~500)
Defined in UIFramework.as nextDelay = 0.2f;
On windows the user setting can be retrieved:
UINT currentDelay = 0;
SystemParametersInfo( SPI_GETKEYBOARDDELAY, 0, ¤tDelay, 0 );
UINT realDelayMS = 250 + (250*currentDelay);
Yep, that's pretty annoying. In my case, this appears when I press 't' (global chat) or 'y' (team chat). When I press button, not only chat input line appears, but also 't' or 'y' already written in that input line.
@noway421 That seems a separate issue so I opened #169.
Solved, as seen in #169
In version 0.0.10 of Openspades is a bugg that I noticed. If you want to write something in the chat it sometimes writes double letters etc. Like if I want to write "hello" it sometimes writes double letters and it will return "heelllo" And thats kind of annoying. Would be cool if that could be fixed