test for language, not full locale, in deciding to show English-only

release note
This commit is contained in:
Eric House 2015-06-16 07:27:01 -07:00
parent 13f4e66f84
commit 9d25b0cb65

View file

@ -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;