It was not checked whether captionSheet is present.
This commit is contained in:
parent
6c382aa5da
commit
8b243a7f05
1 changed files with 2 additions and 2 deletions
|
@ -170,7 +170,7 @@ class ViewImageFragment : ViewMediaFragment() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onToolbarVisibilityChange(visible: Boolean) {
|
override fun onToolbarVisibilityChange(visible: Boolean) {
|
||||||
if (photoView == null || !userVisibleHint) {
|
if (photoView == null || !userVisibleHint || captionSheet == null) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
isDescriptionVisible = showingDescription && visible
|
isDescriptionVisible = showingDescription && visible
|
||||||
|
@ -178,7 +178,7 @@ class ViewImageFragment : ViewMediaFragment() {
|
||||||
captionSheet.animate().alpha(alpha)
|
captionSheet.animate().alpha(alpha)
|
||||||
.setListener(object : AnimatorListenerAdapter() {
|
.setListener(object : AnimatorListenerAdapter() {
|
||||||
override fun onAnimationEnd(animation: Animator) {
|
override fun onAnimationEnd(animation: Animator) {
|
||||||
captionSheet.visible(isDescriptionVisible)
|
captionSheet?.visible(isDescriptionVisible)
|
||||||
animation.removeListener(this)
|
animation.removeListener(this)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue