Ilmarinen100
Ilmarinen100
I had the same bug while capturing under linux/x11. I was able to solve it with the following sequence of calls: ``` python c = SomeClassThatExtendsPyMouseEvent() c.start() # [....] from...
not quite sure they are related, have you tried XInitThreads yet? a few years ago i needed to call that to prevent random crashes in a multi-threaded opengl program. As...
``` python import ctypes from ctypes.util import find_library try: libpath = find_library("X11") from ctypes import * x11 = cdll.LoadLibrary(libpath) x11.XInitThreads() print "XInitThreads() called" except BaseException, e: print "Error occured while...
I'll continue to look into it, if I come up with something reliable I'll come back to you... Also, X11 never stops baffling me either, it's a huge mess...
Update: while writing this, I let eclipse running and it did in fact recover after a delay of approximately 30 minutes. Combing through the various stack traces of the main...
it would be awesome if this was integrated