v0.7.5b: removed the baseline method from RenderedText, fixed one layout error with WndTitledMessage

This commit is contained in:
Evan Debenham
2019-10-11 20:30:55 -04:00
parent b439092443
commit 72d1db49ed
5 changed files with 8 additions and 12 deletions

View File

@@ -353,7 +353,7 @@ public class AndroidPlatformSupport extends PlatformSupport {
public float getFontHeightOffset( BitmapFont font ){
//more weirdness with android 6 OTF fonts
if (android6OTFPresent && !basicFonts.containsValue(font)){
return -0.2f;
return -0.25f;
} else {
return 0.0f;
}