From 3bd69b54478b875bf05cc8892d8d83359a6cc06d Mon Sep 17 00:00:00 2001 From: FineFindus <63370021+FineFindus@users.noreply.github.com> Date: Sat, 14 Jan 2023 14:58:31 +0100 Subject: [PATCH] fix(note/confirm): animation not displaying --- .../joinmastodon/android/fragments/ProfileAboutFragment.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileAboutFragment.java b/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileAboutFragment.java index 82d858009..ba2cb9d95 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileAboutFragment.java +++ b/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileAboutFragment.java @@ -104,13 +104,11 @@ public class ProfileAboutFragment extends Fragment implements WindowInsetsAwareF noteEditConfirm.animate() .alpha(1.0f) .setDuration(700); - } else { - noteEditConfirm.setVisibility(View.INVISIBLE); noteEditConfirm.animate() .alpha(0.0f) .setDuration(700); - + noteEditConfirm.setVisibility(View.INVISIBLE); } });