Fix volume causing video activity to finish

This commit is contained in:
Sylvain Berfini 2012-05-10 10:30:22 +02:00
parent 87d7af6c5a
commit 107c6c8ac2

View file

@ -382,7 +382,7 @@ public class VideoCallActivity extends Activity implements
return true;
if (Version.isXLargeScreen(this) && LinphoneUtils.onKeyBackGoHome(this, keyCode, event)) {
return true;
} else if (!Version.isXLargeScreen(this)) {
} else if (!Version.isXLargeScreen(this) && keyCode == KeyEvent.KEYCODE_BACK) {
LinphoneActivity.instance().startIncallActivity();
finish();
return true;