I was working on the Edge 130 layout of one of my datafields and I noticed that the TINY font size is actually smaller than XTINY.
I tried this simple code with Connect IQ 3.0.10 SDK:
Sys.println("TINY text size for ABC: " + (dc.getTextDimensions("ABC", Gfx.FONT_TINY)).toString());
Sys.println("XTINY text size for ABC: " + (dc.getTextDimensions("ABC", Gfx.FONT_XTINY)).toString());
With the following results:
TINY text size for ABC: [39, 27]
XTINY text size for ABC: [48, 27]
As you can see the XTINY is noticeable wider and the same height even when is not bold as TINY and obviously bigger to the eye.
Is this expected? Does it make sense?
Thanks.