mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Fix uninitialized read in ChannelView
's highlightedMessage_
(#4109)
This commit is contained in:
parent
05008214fa
commit
e3e1845262
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ private:
|
||||||
QTimer scrollTimer_;
|
QTimer scrollTimer_;
|
||||||
|
|
||||||
// We're only interested in the pointer, not the contents
|
// We're only interested in the pointer, not the contents
|
||||||
MessageLayout *highlightedMessage_;
|
MessageLayout *highlightedMessage_ = nullptr;
|
||||||
QVariantAnimation highlightAnimation_;
|
QVariantAnimation highlightAnimation_;
|
||||||
void setupHighlightAnimationColors();
|
void setupHighlightAnimationColors();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue