From 69cd33b7331368f4f0092e565ac8abcec62fc698 Mon Sep 17 00:00:00 2001 From: Anthony Bilinski Date: Wed, 22 Sep 2021 14:15:27 -0700 Subject: [PATCH] fix(chatform): Scroll to bottom on load, broken on refactor Fix #6314 --- src/chatlog/chatlog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/chatlog/chatlog.cpp b/src/chatlog/chatlog.cpp index baa20e236..cc5e58fb9 100644 --- a/src/chatlog/chatlog.cpp +++ b/src/chatlog/chatlog.cpp @@ -128,6 +128,7 @@ ChatLog::ChatLog(QWidget* parent) reloadTheme(); retranslateUi(); Translator::registerHandler(std::bind(&ChatLog::retranslateUi, this), this); + scrollToBottom(); } ChatLog::~ChatLog()