LINUX: Turn off keyboard repeat rate at Window.create too

This commit is contained in:
Elias Naur 2004-04-12 14:29:55 +00:00
parent b641b66e12
commit 1907fb3ff6
1 changed files with 1 additions and 0 deletions

View File

@ -276,6 +276,7 @@ static void createWindow(JNIEnv* env, int screen, XVisualInfo *vis_info, jstring
XMapRaised(getDisplay(), win);
waitMapped(win);
XClearWindow(getDisplay(), win);
setRepeatMode(AutoRepeatModeOff);
XSync(getDisplay(), True);
}