[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] virtual keyboard input problems under windows



hi,

which windows are you using?

Try this before pygame init...
import os
import platform
 
if platform.system() == 'Windows':
os.environ['SDL_VIDEODRIVER'] = 'windib'

might work.

cu,