mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +01:00
don't overwrite m_gi on resuming activity as it may contain
local/pending changes. Fixes bug where you change language, then choose "download more..." from a player's dict choice spinner and find on returning to GameConfig that the language has reverted.
This commit is contained in:
parent
eab067fe32
commit
d82193ff05
1 changed files with 3 additions and 1 deletions
|
@ -457,7 +457,9 @@ public class GameConfig extends XWActivity
|
||||||
handleLockedChange();
|
handleLockedChange();
|
||||||
}
|
}
|
||||||
|
|
||||||
m_gi = new CurGameInfo( this, m_giOrig );
|
if ( null == m_gi ) {
|
||||||
|
m_gi = new CurGameInfo( this, m_giOrig );
|
||||||
|
}
|
||||||
|
|
||||||
m_carOrig = new CommsAddrRec( this );
|
m_carOrig = new CommsAddrRec( this );
|
||||||
if ( XwJNI.game_hasComms( gamePtr ) ) {
|
if ( XwJNI.game_hasComms( gamePtr ) ) {
|
||||||
|
|
Loading…
Reference in a new issue