fix: should center window according to available geometry

This commit is contained in:
Gary Wang 2025-01-04 13:36:01 +08:00
parent 6d7d0e4e1d
commit eb04ac362b
No known key found for this signature in database
GPG Key ID: 5D30A4F15EA78760

View File

@ -563,7 +563,7 @@ void MainWindow::centerWindow()
Qt::LeftToRight, Qt::LeftToRight,
Qt::AlignCenter, Qt::AlignCenter,
this->size(), this->size(),
qApp->screenAt(QCursor::pos())->geometry() qApp->screenAt(QCursor::pos())->availableGeometry()
) )
); );
} }