gui: show eula on non windows versions

This commit is contained in:
Andreas Stallinger
2017-06-20 14:45:52 +02:00
parent 738e13a664
commit 81b88df3a2
+4 -2
View File
@@ -465,11 +465,13 @@ void QtMainWindow::showStartScreen()
forceEnterLicense(state == LicenseChecker::LICENSE_EXPIRED); forceEnterLicense(state == LicenseChecker::LICENSE_EXPIRED);
} }
if (QSysInfo::macVersion() != QSysInfo::MV_None && #ifndef Q_OS_WIN
ApplicationSettings::getInstance()->getAcceptedEulaVersion() < QtEulaWindow::EULA_VERSION) if (ApplicationSettings::getInstance()->getAcceptedEulaVersion() < QtEulaWindow::EULA_VERSION)
{ {
showEula(true); showEula(true);
} }
#endif
} }
void QtMainWindow::hideStartScreen() void QtMainWindow::hideStartScreen()