Using python and the gi.repository
module, I am trying to call Gdk.threads_add_idle
, but I get the error message that three arguments are required. The documentation, however, only mentions two args.
You can try the function (on a linux only, i guess) by typing the following in a python interpreter:
from gi.repository import Gdk
Gdk.threads_add_idle(...)
Any ideas what the three args are?