Hi.
Is it possible to have both a bitmap and an accelerator for a menu item?
I've tried and failed.
Essentially, I'm doing the following:
menuItem = wxMenuItem(menu, id, text, tip)
menuItem.SetBitmap(bitmap)
menu.AppendItem(menuItem)
Where the text may be something like, "New\tCtrl+N".
However, I only see the bitmap and "New" text. The accelerator will
not display unless I comment out the "SetBitmap".
I'd like to have the best of both worlds.
Is it possible? And, if so, how?
Ta.
David.