diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt index 3fbdc67a58..ded96b8ed4 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt @@ -1362,8 +1362,8 @@ fun BoxWithConstraintsScope.FloatingButtons( elapsedOffset += it.size } } - - isNearBottom = (visibleItemsInfo.firstOrNull()?.index ?: 0) < nearBottomIndex + + isNearBottom = (visibleItemsInfo.firstOrNull()?.index ?: 0) <= nearBottomIndex } }