don't refresh public room names when game is locked.

This commit is contained in:
Andy2 2011-05-10 18:34:39 -07:00
parent bad8a5e19b
commit af96e184d7

View file

@ -970,8 +970,10 @@ public class GameConfig extends XWActivity
private void refreshNames()
{
new RefreshNamesTask( this, this, m_gi.dictLang,
m_gi.nPlayers, m_roomChoose ).execute();
if ( !m_isLocked ) {
new RefreshNamesTask( this, this, m_gi.dictLang,
m_gi.nPlayers, m_roomChoose ).execute();
}
}
private void setTitle()