Merge pull request #5632 from riadvice/chat-scroll

Fix chat ribbon flickering when a lot of messages are arriving
This commit is contained in:
Richard Alam 2018-06-04 10:44:37 -04:00 committed by GitHub
commit 4645c7c920
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -360,9 +360,9 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
// @todo : scromm if
// 1 - I am the send of the last message
// 2 - If the scroll bar is at the bottom most
if (UsersUtil.isMe(userID) || chatMessagesList.verticalScrollAtMax) {
if (UsersUtil.isMe(userID) || (chatMessagesList.verticalScrollAtMax)) {
if (scrollTimer != null) scrollTimer.start();
} else {
} else if (!scrollTimer.running) {
unreadMessagesBar.visible = unreadMessagesBar.includeInLayout = true;
}
}