From 9d25b0cb65bfbe34c6461aaacb46f8d48b44d36d Mon Sep 17 00:00:00 2001 From: Eric House Date: Tue, 16 Jun 2015 07:27:01 -0700 Subject: [PATCH] test for language, not full locale, in deciding to show English-only release note --- .../XWords4/src/org/eehouse/android/xw4/GamesListDelegate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesListDelegate.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesListDelegate.java index 3d28f99f0..417a3b98a 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesListDelegate.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesListDelegate.java @@ -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;