mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +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 int m_missingDictLang;
|
||||||
private long m_rowid;
|
private long m_rowid;
|
||||||
private NetLaunchInfo m_netLaunchInfo;
|
private NetLaunchInfo m_netLaunchInfo;
|
||||||
private long m_invalRowID = DBUtils.ROWID_NOTFOUND;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Dialog onCreateDialog( int id )
|
protected Dialog onCreateDialog( int id )
|
||||||
|
@ -379,10 +378,6 @@ public class GamesList extends XWListActivity
|
||||||
if ( hasFocus ) {
|
if ( hasFocus ) {
|
||||||
updateField();
|
updateField();
|
||||||
}
|
}
|
||||||
if ( hasFocus && DBUtils.ROWID_NOTFOUND != m_invalRowID ) {
|
|
||||||
m_adapter.inval( m_invalRowID );
|
|
||||||
m_invalRowID = DBUtils.ROWID_NOTFOUND;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// DBUtils.DBChangeListener interface
|
// DBUtils.DBChangeListener interface
|
||||||
|
@ -883,7 +878,6 @@ public class GamesList extends XWListActivity
|
||||||
|
|
||||||
private void launchGame( long rowid, boolean invited )
|
private void launchGame( long rowid, boolean invited )
|
||||||
{
|
{
|
||||||
m_invalRowID = rowid;
|
|
||||||
GameUtils.launchGame( this, rowid, invited );
|
GameUtils.launchGame( this, rowid, invited );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue