fix missing "game in room NNNN" in games list

Looks like sometimes the TextField was GONE
This commit is contained in:
Eric House 2017-08-30 07:35:15 -07:00
parent e24f7bdba8
commit e97dd26e6f

View file

@ -325,10 +325,9 @@ public class GameListItem extends LinearLayout
} );
String roleSummary = summary.summarizeRole( m_context, m_rowid );
m_role.setVisibility( null == roleSummary ? View.GONE : View.VISIBLE );
if ( null != roleSummary ) {
m_role.setText( roleSummary );
} else {
m_role.setVisibility( View.GONE );
}
update( expanded, summary.lastMoveTime, haveATurn,