Prevent attachment download button re-animation.

master
Cody Henthorne 2020-06-26 09:41:12 -04:00
parent afa2bb3bf5
commit 6de789dfe3
1 changed files with 4 additions and 0 deletions

View File

@ -205,6 +205,10 @@ public final class TransferControlView extends FrameLayout {
}
private void display(@Nullable final View view) {
if (current == view) {
return;
}
if (current != null) {
current.setVisibility(GONE);
}