mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-09-04 04:11:37 +01:00
Ignore call to visibility if there's no view.
This commit is contained in:
@@ -2248,6 +2248,10 @@ class ConversationFragment :
|
||||
}
|
||||
|
||||
private fun setBottomActionBarVisibility(isVisible: Boolean) {
|
||||
if (view == null) {
|
||||
return
|
||||
}
|
||||
|
||||
val isCurrentlyVisible = bottomActionBar.isVisible
|
||||
if (isVisible == isCurrentlyVisible) {
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user