Fix bad shown camera state in video call menu.

This commit is contained in:
Guillaume Beraudo 2010-11-29 14:38:23 +01:00
parent 5f48ba809f
commit 0cda12e3e2

View file

@ -55,9 +55,9 @@ public class VideoCallActivity extends Activity {
private void rewriteToggleCameraItem(MenuItem item) {
if (recordManager.isRecording()) {
item.setTitle(getString(R.string.menu_videocall_toggle_camera_enable));
} else {
item.setTitle(getString(R.string.menu_videocall_toggle_camera_disable));
} else {
item.setTitle(getString(R.string.menu_videocall_toggle_camera_enable));
}
}