mirror of
https://github.com/oxen-io/session-android.git
synced 2025-02-17 14:28:25 +00:00
parent
0adce89eec
commit
7d10560575
@ -335,7 +335,13 @@ public class WebRtcCallScreen extends FrameLayout implements Recipient.Recipient
|
|||||||
ViewCompat.animate(callHeader).translationY(0);
|
ViewCompat.animate(callHeader).translationY(0);
|
||||||
ViewCompat.animate(status).alpha(1);
|
ViewCompat.animate(status).alpha(1);
|
||||||
ViewCompat.animate(endCallButton).translationY(0);
|
ViewCompat.animate(endCallButton).translationY(0);
|
||||||
ViewCompat.animate(endCallButton).alpha(1);
|
ViewCompat.animate(endCallButton).alpha(1).withEndAction(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
// Note: This is to work around an Android bug, see #6225
|
||||||
|
endCallButton.requestLayout();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
this.minimized = false;
|
this.minimized = false;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user