Added support for Twitch's Chat Replies (#3722)

Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
This commit is contained in:
Daniel Sage
2022-07-31 06:45:25 -04:00
committed by GitHub
parent a280089693
commit 20c974fdab
53 changed files with 2022 additions and 310 deletions
+4 -2
View File
@@ -49,8 +49,9 @@ ChannelPtr SearchPopup::filter(const QString &text, const QString &channelName,
return channel;
}
SearchPopup::SearchPopup(QWidget *parent)
SearchPopup::SearchPopup(QWidget *parent, Split *split)
: BasePopup({}, parent)
, split_(split)
{
this->initLayout();
this->resize(400, 600);
@@ -238,7 +239,8 @@ void SearchPopup::initLayout()
// CHANNELVIEW
{
this->channelView_ = new ChannelView(this);
this->channelView_ = new ChannelView(this, this->split_,
ChannelView::Context::Search);
layout1->addWidget(this->channelView_);
}