[wxPython] font size under windows

Lucian and its font size problem

I do not know how the font handling is done under wxWindows/wxPython, but
under windows, font handling is tricky.
Undert windows, some fonts (even ttf) are not accepting font size < 8
points.
If you defined a font name and then you change its size (<8 points),
the font name and/or the font size may automatically change!
Using vb, you can try the following test:
obj.SetFontName(name1)
obj.SetFontSize(4)
name2 = obj.GetFontName()
Sometimes, name2 != name1
QED

Jean-Michel Fauth, Switzerland