I have an application that contains a wxMenuBar in a wxFrame. When I run the code under OSX, the menubar appears at the top of the screen, rather than the top of the wxFrame. I realize this is the way it’s supposed to be, but in my situation I’d rather have the menubar display at the top of the frame.
I tried adding…
import os
os.environ["OSX_MENUPROXY"]="0"
to no avail.
How do I go about getting the menubar into the frame?
Thanks
Eric