Thanks for more debugger improvements. :D
- Implemented improved debugger evaluation tooltip window
- Fixed bad memory addresses reported in debugger's MemoryDump window
- Fixed bug in template-code parsing for debugger tooltips
- Fixed bug in function-signature parsing for debugger tooltips
Regressions/Confirmed/Annoying/Common bugs:
menu items with icon not correctly aligned (since wx263)
/* XPM */
static char *emptyicon_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 1 1 1",
" c None",
/* pixels */
" ",
};
QuoteRegressions/Confirmed/Annoying/Common bugs:
menu items with icon not correctly aligned (since wx263)
I'm surprised that no-one has already founded the solution : just add a 1 pixel height all transparent bitmap to all menu entries that don't have an icon. I've tried it : it works fine.Code/* XPM */
static char *emptyicon_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 1 1 1",
" c None",
/* pixels */
" ",
};
I wonder why you have to do that for it to work corrrectly though?
QuoteI wonder why you have to do that for it to work corrrectly though?
It is not for it to work correctly. Just to have correctly aligned menus.
And it is not only for C::B, but for all wxWidgets applications based on version 2.6.3
Hum, sorry for my missunderstood :? (english is not my native language)
It seems to be a wx2.6.3 bug. And it appears only on Ms Windows version.
Linux version does correclty align menuitems with or withou bitmaps