mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
fixed account switch popup showing behind the main window
This commit is contained in:
parent
8111946858
commit
8b4f9d066e
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@ namespace widgets {
|
||||||
AccountSwitchPopupWidget::AccountSwitchPopupWidget(QWidget *parent)
|
AccountSwitchPopupWidget::AccountSwitchPopupWidget(QWidget *parent)
|
||||||
: QWidget(parent)
|
: QWidget(parent)
|
||||||
{
|
{
|
||||||
this->setWindowFlags(Qt::FramelessWindowHint);
|
this->setWindowFlag(Qt::FramelessWindowHint);
|
||||||
|
this->setWindowFlag(Qt::WindowStaysOnTopHint);
|
||||||
|
|
||||||
this->setContentsMargins(0, 0, 0, 0);
|
this->setContentsMargins(0, 0, 0, 0);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue