From 90e2b7f4b051a5e35b5940968cdc0b9827ca88a6 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Mon, 1 Oct 2012 17:30:36 +0200 Subject: [PATCH] Fix disable anims pref issue --- src/org/linphone/InCallActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/linphone/InCallActivity.java b/src/org/linphone/InCallActivity.java index 487fcb597..2f7bdfbd1 100644 --- a/src/org/linphone/InCallActivity.java +++ b/src/org/linphone/InCallActivity.java @@ -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) {