mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
prevent moveTo from changing popup position on every launch (#1630)
This commit is contained in:
parent
beda9e555f
commit
2076715e23
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ namespace {
|
||||||
EmotePopup::EmotePopup(QWidget *parent)
|
EmotePopup::EmotePopup(QWidget *parent)
|
||||||
: BasePopup(BaseWindow::EnableCustomFrame, parent)
|
: BasePopup(BaseWindow::EnableCustomFrame, parent)
|
||||||
{
|
{
|
||||||
this->moveTo(this, getApp()->windows->emotePopupPos());
|
this->moveTo(this, getApp()->windows->emotePopupPos(), false);
|
||||||
|
|
||||||
auto layout = new QVBoxLayout(this);
|
auto layout = new QVBoxLayout(this);
|
||||||
this->getLayoutContainer()->setLayout(layout);
|
this->getLayoutContainer()->setLayout(layout);
|
||||||
|
|
Loading…
Reference in a new issue