mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
test for language, not full locale, in deciding to show English-only
release note
This commit is contained in:
parent
13f4e66f84
commit
9d25b0cb65
1 changed files with 1 additions and 1 deletions
|
@ -895,7 +895,7 @@ public class GamesListDelegate extends ListDelegateBase
|
|||
|
||||
boolean isUpgrade = Utils.firstBootThisVersion( m_activity );
|
||||
if ( isUpgrade && !s_firstShown ) {
|
||||
if ( LocUtils.getCurLocale( m_activity ).equals( "en" ) ) {
|
||||
if ( LocUtils.getCurLangCode( m_activity ).equals( "en" ) ) {
|
||||
FirstRunDialog.show( m_activity );
|
||||
}
|
||||
s_firstShown = true;
|
||||
|
|
Loading…
Reference in a new issue