On 24/03/2014 at 12:23, xxxxxxxx wrote:
I am adding menu items to a python created window using:
self.MenuSubBegin("Set")
self.MenuAddString(10017,"Local&c&")
self.MenuSubEnd()
Trying to toggle the check mark on the menu I am using:
self.MenuInitString(10017,True,False)
Where in the documentation, False is where the check status goes. So false should be unchecked and true should be checked. I can not get the check to do anything.
Am I setting this up wrong?