Fix uninitialized read in ChannelView's highlightedMessage_ (#4109)

This commit is contained in:
pajlada
2022-11-04 19:59:03 +01:00
committed by GitHub
parent 05008214fa
commit e3e1845262
+1 -1
View File
@@ -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();