use min of score ht and cell width for network status icon. Fixes

problem on 600x800 devices where the icon overlaps the board.
This commit is contained in:
Andy2 2010-11-30 18:21:28 -08:00
parent a5c36f37a4
commit 78be732c64

View file

@ -179,7 +179,7 @@ public class JNIThread extends Thread {
scoreWidth -= dims.cellSize;
m_connsIconRect =
new Rect( scoreWidth, 0, scoreWidth + dims.cellSize,
dims.cellSize );
Math.min( dims.scoreHt, dims.cellSize ) );
}
if ( m_gi.timerEnabled ) {