mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-05 10:29:27 +00:00
Don't use WindowModal on macOS (for now)
This commit is contained in:
parent
aa53b4e488
commit
17519ef7c0
1 changed files with 2 additions and 0 deletions
|
@ -118,5 +118,7 @@ void ClickableLabel::mousePressEvent(QMouseEvent* event) {
|
||||||
WindowModalDialog::WindowModalDialog(QWidget *parent)
|
WindowModalDialog::WindowModalDialog(QWidget *parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent)
|
||||||
{
|
{
|
||||||
|
#ifndef Q_OS_MACOS
|
||||||
this->setWindowModality(Qt::WindowModal);
|
this->setWindowModality(Qt::WindowModal);
|
||||||
|
#endif
|
||||||
}
|
}
|
Loading…
Reference in a new issue