diff --git a/src/widgets/helper/splitinput.cpp b/src/widgets/helper/splitinput.cpp index 74f68790a..2b983d413 100644 --- a/src/widgets/helper/splitinput.cpp +++ b/src/widgets/helper/splitinput.cpp @@ -56,7 +56,8 @@ SplitInput::SplitInput(Split *_chatWidget) this->emotePopup = new EmotePopup(this->colorScheme); } - this->emotePopup->resize(300, 500); + this->emotePopup->resize((int)(300 * this->emotePopup->getDpiMultiplier()), + (int)(500 * this->emotePopup->getDpiMultiplier())); this->emotePopup->loadChannel(this->chatWidget->getChannel()); this->emotePopup->show(); });