mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-20 03:59:35 +01:00
fix to show call controls in voiceOnly call after coming back from pip mode
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
1ae5f51a81
commit
12d96634e5
@ -2398,9 +2398,12 @@ public class CallController extends BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void updateUiForNormalMode(){
|
public void updateUiForNormalMode(){
|
||||||
callControls.setVisibility(View.INVISIBLE); // animateCallControls needs this to be invisible for a check.
|
if (isVoiceOnlyCall) {
|
||||||
initViews(); // --> IllegalStateException: pip_video_viewAlready initialized
|
callControls.setVisibility(View.VISIBLE);
|
||||||
|
} else {
|
||||||
|
callControls.setVisibility(View.INVISIBLE); // animateCallControls needs this to be invisible for a check.
|
||||||
|
}
|
||||||
|
initViews();
|
||||||
|
|
||||||
callInfosLinearLayout.setVisibility(View.VISIBLE);
|
callInfosLinearLayout.setVisibility(View.VISIBLE);
|
||||||
selfVideoViewWrapper.setVisibility(View.VISIBLE);
|
selfVideoViewWrapper.setVisibility(View.VISIBLE);
|
||||||
|
Loading…
Reference in New Issue
Block a user