make bonus hints smaller

This commit is contained in:
Eric House 2021-07-18 15:18:16 -07:00
parent 6439f6d223
commit 34f2a853d6

View file

@ -428,7 +428,7 @@ public class BoardCanvas extends Canvas implements DrawCtx {
int color = m_otherColors[CommonPrefs.COLOR_BONUSHINT];
m_fillPaint.setColor( adjustColor(color) );
Rect brect = new Rect( rect );
brect.inset( 0, brect.height()/10 );
brect.inset( 0, brect.height()/4 );
drawCentered( bonusStr, brect, m_fontDims );
}
} else {