SFML community forums

Help => Window => Topic started by: tJener on May 01, 2009, 09:38:19 am

Title: Keyboard Autorepeat
Post by: tJener on May 01, 2009, 09:38:19 am
Is there a way to tell SFML to disable keyboard autorepeat so that when processing events it only triggers on keydown and keyup?
Title: Keyboard Autorepeat
Post by: Laurent on May 01, 2009, 11:13:24 am
Code: [Select]
window.EnableKeyRepeat(false);
Title: Keyboard Autorepeat
Post by: tJener on May 01, 2009, 10:16:11 pm
Ah, thank you, I was searching for it with the wrong name, since the xlib call is XAutoRepeatOff.