Hi Guys,
I got wxPython working with Panada. But now my wxPython systems are very slow.
I used:
taskMgr.add(handleWxEvents, ‘handleWxEvents’, priority=0)
def handleWxEvents(task):
while wx_app.Pending():
wx_app.Dispatch()
wx_app.ProcessIdle()
return Task.cont
Is there a way to fix this? Doesn’t matter to me if the Panda display is slowed.
Thanks!
More specifcally when I update wx.listctrls. Can only do one item per second.