Hello @stst9191,
We modified the way we position the text inside the Button with Label between v.4.20.0 and v.4.21.0.
We did those changes to reposition the label text if the font includes a character that goes lower that the font baseline, for example "g".
If you want to get the same behavior as before, you can modify the updateTextPosition() inside the touchgfx\framework\include\touchgfx\widgets\ButtonWithLabel.hpp file inside your project.
You can modify text height spacing by replacing getHeight() by getMaxTextHeight(), like this :
Also, since getMaxTextHeight() is now a deprecated method, you'll also have to remove the deprecation tag inside the touchgfx\framework\include\touchgfx\Font.hpp file :
FYI, we are discussing this internally and considering the fact to add a method or functionality to enable the user to modify the position of the label inside the button by himself.
Hope that helps,
/Yoann