make hint text bigger and proportional to cell size.

This commit is contained in:
Andy2 2011-03-07 20:29:44 -08:00
parent a6edcaadd9
commit b441fdb56e

View file

@ -502,7 +502,7 @@ public class BoardView extends View implements DrawCtx, BoardHandler,
} else if ( null != bonusStr ) {
m_fillPaint.setColor( GREY );
Rect brect = new Rect( rect );
brect.inset( 0, (brect.height() - m_defaultFontHt)/2 );
brect.inset( 0, brect.height()/10 );
drawCentered( bonusStr, brect, m_fontDims );
}
} else {