mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-21 18:26:57 +00:00
Ignore call to visibility if there's no view.
This commit is contained in:
committed by
jeffrey-signal
parent
74f9f39656
commit
c268625f52
@@ -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