fix bug preventing move count showing on REL builds

This commit is contained in:
Eric House 2020-01-31 16:06:59 -08:00
parent 64569840f4
commit dc1eeeaead

View file

@ -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();
} }