Skip to content

Commit

Permalink
fix: view clickable after hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
rebelonion committed Apr 21, 2024
1 parent e475cc5 commit 4477e3a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions app/src/main/java/ani/dantotsu/media/SearchAdapter.kt
Original file line number Diff line number Diff line change
Expand Up @@ -305,14 +305,12 @@ class SearchAdapter(private val activity: SearchActivity, private val type: Stri
private fun fadeInAnimation(): Animation {
return AlphaAnimation(0f, 1f).apply {
duration = 150
fillAfter = true
}
}

private fun fadeOutAnimation(): Animation {
return AlphaAnimation(1f, 0f).apply {
duration = 150
fillAfter = true
}
}

Expand Down

0 comments on commit 4477e3a

Please sign in to comment.