From 63e88938efeeaf3909fc10413864fcb45cd64a69 Mon Sep 17 00:00:00 2001 From: fourtf Date: Wed, 23 May 2018 20:22:41 +0200 Subject: [PATCH] fixed channelview not scrolling down when emotes get loaded --- src/widgets/helper/channelview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/helper/channelview.cpp b/src/widgets/helper/channelview.cpp index b693d968..79c7a3ef 100644 --- a/src/widgets/helper/channelview.cpp +++ b/src/widgets/helper/channelview.cpp @@ -258,7 +258,7 @@ void ChannelView::actuallyLayoutMessages(bool causedByScrollbar) if (this->enableScrollingToBottom && this->showingLatestMessages && showScrollbar) { if (!this->isPaused()) { this->scrollBar.scrollToBottom( - this->messageWasAdded && + // this->messageWasAdded && app->settings->enableSmoothScrollingNewMessages.getValue()); } this->messageWasAdded = false;