diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java index 02cc57c32..f5ceb52d3 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java @@ -51,6 +51,8 @@ import org.eehouse.android.xw4.loc.LocUtils; public class GameListItem extends LinearLayout implements View.OnClickListener, SelectableItem.LongClickHandler { + private static final int SUMMARY_WAIT_MSECS = 1000; + private static HashSet s_invalRows = new HashSet(); private Activity m_activity; @@ -352,7 +354,7 @@ public class GameListItem extends LinearLayout @Override protected GameSummary doInBackground( Void... unused ) { - return DBUtils.getSummary( m_context, m_rowid, 500 ); + return DBUtils.getSummary( m_context, m_rowid, SUMMARY_WAIT_MSECS ); } // doInBackground @Override