mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +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(status).alpha(1);
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user