Please considering following two cases that print some texts that occupy two lines
case1: display.newText(“1\n2”,…) – occupies two lines with a line break “\n”
case2: display.newText(“long text”, …) – no line break, but the long text occupies two lines (fixed width)
I found the heights for these two cases are slightly different, which is causing me some trouble.
Is it because of the font I choose? or all fonts behave this way?
Why would a line break make the difference?