The radio button labels become unreadable with with system font size bigger than standard:
The following code
Code:
gui, add, radio, , Yellow
gui, add, radio, , Bluegreen
gui, add, radio, , Violet
gui, show
gives a nice GUI with system font size 100% (96 dpi)

With a system font size of 110% (106 dpi)I get this:

When I specify the width of the label by changing the code
Code:
gui, add, radio, w80, Yellow
gui, add, radio, w80, Bluegreen
gui, add, radio, w80, Violet
gui, show
I get a readable GUI again:
I'm trying to avoid absolute sizing and positioning of controls in order to make the code more maintainable. I hoped too, GUIs without absolute sizing will show, no matter what the system font size.
Is it possible to fix this problem with radio buttons?
Thanks
Boskoop