Fix disable anims pref issue
This commit is contained in:
parent
045d0d5e1b
commit
90e2b7f4b0
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ public class InCallActivity extends FragmentActivity implements
|
|||
isTransferAllowed = getApplicationContext().getResources().getBoolean(R.bool.allow_transfers);
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
||||
isAnimationDisabled = getApplicationContext().getResources().getBoolean(R.bool.disable_animations) || !prefs.getBoolean(getString(R.string.pref_animation_enable_key), true);
|
||||
isAnimationDisabled = getApplicationContext().getResources().getBoolean(R.bool.disable_animations) || !prefs.getBoolean(getString(R.string.pref_animation_enable_key), false);
|
||||
cameraNumber = AndroidCameraConfiguration.retrieveCameras().length;
|
||||
|
||||
if (findViewById(R.id.fragmentContainer) != null) {
|
||||
|
|
Loading…
Reference in a new issue