From e6975e5984072048db6bb194d32f89eccffc8ed6 Mon Sep 17 00:00:00 2001 From: Ryan ZHAO Date: Tue, 30 Mar 2021 13:21:05 +1100 Subject: [PATCH] fix scroll button hiding issue --- Session/Conversations/ConversationVC.swift | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Session/Conversations/ConversationVC.swift b/Session/Conversations/ConversationVC.swift index d3545d27f..f36cda9ed 100644 --- a/Session/Conversations/ConversationVC.swift +++ b/Session/Conversations/ConversationVC.swift @@ -213,11 +213,11 @@ final class ConversationVC : BaseVC, ConversationViewModelDelegate, OWSConversat DispatchQueue.main.async { if unreadCount > 0, let viewItem = self.viewItems[ifValid: self.viewItems.count - Int(unreadCount)], let interactionID = viewItem.interaction.uniqueId { self.scrollToInteraction(with: interactionID, position: .top, isAnimated: false) - self.scrollButton.alpha = self.getScrollButtonOpacity() self.unreadCountView.alpha = self.scrollButton.alpha } else { self.scrollToBottom(isAnimated: false) } + self.scrollButton.alpha = self.getScrollButtonOpacity() } } } @@ -301,9 +301,7 @@ final class ConversationVC : BaseVC, ConversationViewModelDelegate, OWSConversat let newContentOffsetY = self.messagesTableView.contentOffset.y + min(lastPageTop, 0) + newHeight - self.messagesTableView.keyboardHeight self.messagesTableView.contentOffset.y = max(self.messagesTableView.contentOffset.y, newContentOffsetY) self.messagesTableView.keyboardHeight = newHeight - if (newHeight > 200) { - self.scrollButton.alpha = 0 - } + self.scrollButton.alpha = self.getScrollButtonOpacity() } @objc func handleKeyboardWillHideNotification(_ notification: Notification) {