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;
|
return callTransfer;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void initInCallMenuLayout(final boolean callTransfer) {
|
private void initInCallMenuLayout() {
|
||||||
selectMenu(FragmentsAvailable.DIALER);
|
selectMenu(FragmentsAvailable.DIALER);
|
||||||
DialerFragment dialerFragment = DialerFragment.instance();
|
DialerFragment dialerFragment = DialerFragment.instance();
|
||||||
if (dialerFragment != null) {
|
if (dialerFragment != null) {
|
||||||
|
@ -1161,7 +1161,7 @@ public class LinphoneActivity extends LinphoneGenericActivity implements OnClick
|
||||||
getIntent().putExtra("PreviousActivity", CALL_ACTIVITY);
|
getIntent().putExtra("PreviousActivity", CALL_ACTIVITY);
|
||||||
callTransfer = data != null && data.getBooleanExtra("Transfer", false);
|
callTransfer = data != null && data.getBooleanExtra("Transfer", false);
|
||||||
if (LinphoneManager.getLc().getCallsNb() > 0) {
|
if (LinphoneManager.getLc().getCallsNb() > 0) {
|
||||||
initInCallMenuLayout(callTransfer);
|
initInCallMenuLayout();
|
||||||
} else {
|
} else {
|
||||||
resetClassicMenuLayoutAndGoBackToCallIfStillRunning();
|
resetClassicMenuLayoutAndGoBackToCallIfStillRunning();
|
||||||
}
|
}
|
||||||
|
|
|
@ -268,7 +268,6 @@ public class CallOutgoingActivity extends LinphoneGenericActivity implements OnC
|
||||||
finish();
|
finish();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private void checkAndRequestCallPermissions() {
|
private void checkAndRequestCallPermissions() {
|
||||||
ArrayList<String> permissionsList = new ArrayList<String>();
|
ArrayList<String> permissionsList = new ArrayList<String>();
|
||||||
|
|
||||||
|
|
|
@ -197,7 +197,7 @@ public class ChatListFragment extends Fragment implements ContactsUpdatedListene
|
||||||
if (LinphoneManager.getLc().getCallsNb() > 0) {
|
if (LinphoneManager.getLc().getCallsNb() > 0) {
|
||||||
mBackToCallButton.setVisibility(View.VISIBLE);
|
mBackToCallButton.setVisibility(View.VISIBLE);
|
||||||
} else {
|
} else {
|
||||||
mBackToCallButton.setVisibility(View.GONE);
|
mBackToCallButton.setVisibility(View.INVISIBLE);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (LinphoneActivity.isInstanciated()) {
|
if (LinphoneActivity.isInstanciated()) {
|
||||||
|
|
Loading…
Reference in a new issue