A wxWindows pod for Panda3D [v.2009-05-05]

Thanks for this wonderful class! I’ve found a bug, on linux at least:

In p3dwxpod.py, line 169:

    if self.wxevt_loop.Pending(): self.wxevt_loop.Dispatch()

Should be:

    while self.wxevt_loop.Pending(): self.wxevt_loop.Dispatch()

This bug causes menu interaction to be painfully slow.

Thanks again!