mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
fix bug preventing move count showing on REL builds
This commit is contained in:
parent
64569840f4
commit
dc1eeeaead
1 changed files with 1 additions and 1 deletions
|
@ -350,7 +350,7 @@ public class ConnStatusHandler {
|
||||||
|
|
||||||
public static void updateMoveCount( Context context, int newCount )
|
public static void updateMoveCount( Context context, int newCount )
|
||||||
{
|
{
|
||||||
if ( BuildConfig.DEBUG ) {
|
if ( XWPrefs.moveCountEnabled( context ) ) {
|
||||||
s_moveCount = newCount;
|
s_moveCount = newCount;
|
||||||
invalidateParent();
|
invalidateParent();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue