mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
no need for redraw in onWindowFocusChanged
This commit is contained in:
parent
9d7d0aca2b
commit
6988b14247
1 changed files with 0 additions and 6 deletions
|
@ -91,7 +91,6 @@ public class GamesList extends XWListActivity
|
|||
private int m_missingDictLang;
|
||||
private long m_rowid;
|
||||
private NetLaunchInfo m_netLaunchInfo;
|
||||
private long m_invalRowID = DBUtils.ROWID_NOTFOUND;
|
||||
|
||||
@Override
|
||||
protected Dialog onCreateDialog( int id )
|
||||
|
@ -379,10 +378,6 @@ public class GamesList extends XWListActivity
|
|||
if ( hasFocus ) {
|
||||
updateField();
|
||||
}
|
||||
if ( hasFocus && DBUtils.ROWID_NOTFOUND != m_invalRowID ) {
|
||||
m_adapter.inval( m_invalRowID );
|
||||
m_invalRowID = DBUtils.ROWID_NOTFOUND;
|
||||
}
|
||||
}
|
||||
|
||||
// DBUtils.DBChangeListener interface
|
||||
|
@ -883,7 +878,6 @@ public class GamesList extends XWListActivity
|
|||
|
||||
private void launchGame( long rowid, boolean invited )
|
||||
{
|
||||
m_invalRowID = rowid;
|
||||
GameUtils.launchGame( this, rowid, invited );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue