mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Bugfix: Fixed a crash when clicking More messages below
button in a usercard and closing it quickly. (#4933)
This commit is contained in:
parent
56346874e1
commit
03b32bffc8
|
@ -24,6 +24,7 @@
|
|||
- Bugfix: Fixed the input completion popup from disappearing when clicking on it on Windows and macOS. (#4876)
|
||||
- Bugfix: Fixed double-click text selection moving its position with each new message. (#4898)
|
||||
- Bugfix: Fixed an issue where notifications on Windows would contain no or an old avatar. (#4899)
|
||||
- Bugfix: Fixed a crash when clicking `More messages below` button in a usercard and closing it quickly. (#4933)
|
||||
- Dev: Change clang-format from v14 to v16. (#4929)
|
||||
- Dev: Fixed UTF16 encoding of `modes` file for the installer. (#4791)
|
||||
- Dev: Temporarily disable High DPI scaling on Qt6 builds on Windows. (#4767)
|
||||
|
|
|
@ -351,7 +351,7 @@ void ChannelView::initializeLayout()
|
|||
|
||||
QObject::connect(
|
||||
this->goToBottom_, &EffectLabel::leftClicked, this, [this] {
|
||||
QTimer::singleShot(180, [this] {
|
||||
QTimer::singleShot(180, this, [this] {
|
||||
this->scrollBar_->scrollToBottom(
|
||||
getSettings()->enableSmoothScrollingNewMessages.getValue());
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue