mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-27 09:58:45 +01:00
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:
parent
a5c36f37a4
commit
78be732c64
1 changed files with 1 additions and 1 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in a new issue