mirror of
https://github.com/nextcloud/talk-android
synced 2025-02-02 12:42:20 +00:00
slight code reformatting
This commit is contained in:
parent
9a7763d6df
commit
ab28954926
@ -758,14 +758,14 @@ public class ContactsController extends BaseController implements SearchView.OnQ
|
||||
@Optional
|
||||
@OnClick(R.id.call_header_layout)
|
||||
void toggleCallHeader() {
|
||||
isPublicCall = !isPublicCall;
|
||||
if (!isPublicCall) {
|
||||
if (isPublicCall) {
|
||||
secondaryRelativeLayout.setVisibility(View.GONE);
|
||||
initialRelativeLayout.setVisibility(View.VISIBLE);
|
||||
} else {
|
||||
initialRelativeLayout.setVisibility(View.GONE);
|
||||
secondaryRelativeLayout.setVisibility(View.VISIBLE);
|
||||
}
|
||||
isPublicCall = !isPublicCall;
|
||||
checkAndHandleBottomButtons();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user