I may be going mad but since yesterday's One UI update to version 7 doing the following seems to make the final size smaller. Am I missing something?
The code below is placed in a Do While loop with dt changing on each loop
This is the logs output:
As you can see the post-ts is lower than the pre-ts.
The code below is placed in a Do While loop with dt changing on each loop
B4X:
Private newV As Float = ex.TextSize + dt
Log($"pre-ts: ${ex.TextSize} + dt: ${dt} = ${ex.TextSize + dt}"$)
ex.TextSize = newV
Log($"post-ts: ${ex.TextSize}"$)
This is the logs output:
As you can see the post-ts is lower than the pre-ts.