mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +01:00
don't put up missing players dialog unless there's at least one.
This commit is contained in:
parent
d469467fcc
commit
1bb18cbde5
1 changed files with 1 additions and 1 deletions
|
@ -1331,7 +1331,7 @@ public class BoardActivity extends XWActivity
|
|||
CommsAddrRec.CommsConnType connType,
|
||||
final int nMissingPlayers )
|
||||
{
|
||||
if ( isServer && !m_haveAskedMissing
|
||||
if ( 0 < nMissingPlayers && isServer && !m_haveAskedMissing
|
||||
&& CommsAddrRec.CommsConnType.COMMS_CONN_BT == connType ) {
|
||||
m_haveAskedMissing = true;
|
||||
post( new Runnable() {
|
||||
|
|
Loading…
Reference in a new issue