This commit is contained in:
fourtf 2018-01-04 23:35:36 +01:00
parent 8693203c6d
commit 4a91372f8f

View file

@ -19,8 +19,6 @@ SplitInput::SplitInput(Split *_chatWidget)
, chatWidget(_chatWidget)
, emotesLabel(this)
{
this->setMaximumHeight(150);
this->setLayout(&this->hbox);
this->hbox.setMargin(4);
@ -269,6 +267,8 @@ void SplitInput::resizeEvent(QResizeEvent *)
this->textInput.setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
}
this->setMaximumHeight((int)(150 * this->getDpiMultiplier()));
this->refreshTheme();
}