qt: about box fixed for older qt5

This commit is contained in:
user 2020-12-17 22:30:14 +08:00
parent 082c4f1104
commit 776dc7ec52

View File

@ -420,6 +420,8 @@ void MainWindow::showAboutBox(const QString & href) {
qDebug() << "MainWindow::showAboutBox(), href:" << href << endl;
AboutDialog dialog(this);
/*
//doesn't work on older qt5: class QStyleHints has no member named showIsMaximized
if (!QGuiApplication::styleHints()->showIsFullScreen() && !QGuiApplication::styleHints()->showIsMaximized()) {
const QWindow * windowHandle = dialog.windowHandle();
qDebug()<<"AboutDialog windowHandle ptr: "<<(size_t)windowHandle<<endl;
@ -432,7 +434,8 @@ void MainWindow::showAboutBox(const QString & href) {
(availableGeometry.height() - dialog.height()) / 2);
}
}
//dialog.show();
*/
(void) dialog.exec();
}