mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-26 23:25:20 +03: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
1 changed files with 6 additions and 3 deletions
|
@ -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 a new issue