mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-30 08:34:16 +01:00
fix assertion: rowid of -1 means all
This commit is contained in:
parent
97fbbf8897
commit
7743fc52d5
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ public class GamesList extends XWExpandableListActivity
|
|||
{
|
||||
runOnUiThread( new Runnable() {
|
||||
public void run() {
|
||||
if ( countChanged ) {
|
||||
if ( countChanged || DBUtils.ROWID_NOTFOUND == rowid ) {
|
||||
onContentChanged();
|
||||
if ( DBUtils.ROWID_NOTFOUND != rowid ) {
|
||||
m_launchedGame = rowid;
|
||||
|
|
Loading…
Add table
Reference in a new issue