Fixed missing space in chat list fragment
This commit is contained in:
parent
f33c4b8000
commit
b177d5181c
3 changed files with 3 additions and 4 deletions
|
@ -1079,7 +1079,7 @@ public class LinphoneActivity extends LinphoneGenericActivity implements OnClick
|
|||
return callTransfer;
|
||||
}
|
||||
|
||||
private void initInCallMenuLayout(final boolean callTransfer) {
|
||||
private void initInCallMenuLayout() {
|
||||
selectMenu(FragmentsAvailable.DIALER);
|
||||
DialerFragment dialerFragment = DialerFragment.instance();
|
||||
if (dialerFragment != null) {
|
||||
|
@ -1161,7 +1161,7 @@ public class LinphoneActivity extends LinphoneGenericActivity implements OnClick
|
|||
getIntent().putExtra("PreviousActivity", CALL_ACTIVITY);
|
||||
callTransfer = data != null && data.getBooleanExtra("Transfer", false);
|
||||
if (LinphoneManager.getLc().getCallsNb() > 0) {
|
||||
initInCallMenuLayout(callTransfer);
|
||||
initInCallMenuLayout();
|
||||
} else {
|
||||
resetClassicMenuLayoutAndGoBackToCallIfStillRunning();
|
||||
}
|
||||
|
|
|
@ -268,7 +268,6 @@ public class CallOutgoingActivity extends LinphoneGenericActivity implements OnC
|
|||
finish();
|
||||
}
|
||||
|
||||
|
||||
private void checkAndRequestCallPermissions() {
|
||||
ArrayList<String> permissionsList = new ArrayList<String>();
|
||||
|
||||
|
|
|
@ -197,7 +197,7 @@ public class ChatListFragment extends Fragment implements ContactsUpdatedListene
|
|||
if (LinphoneManager.getLc().getCallsNb() > 0) {
|
||||
mBackToCallButton.setVisibility(View.VISIBLE);
|
||||
} else {
|
||||
mBackToCallButton.setVisibility(View.GONE);
|
||||
mBackToCallButton.setVisibility(View.INVISIBLE);
|
||||
}
|
||||
|
||||
if (LinphoneActivity.isInstanciated()) {
|
||||
|
|
Loading…
Reference in a new issue