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);
}
if (QSysInfo::macVersion() != QSysInfo::MV_None &&
ApplicationSettings::getInstance()->getAcceptedEulaVersion() < QtEulaWindow::EULA_VERSION)
#ifndef Q_OS_WIN
if (ApplicationSettings::getInstance()->getAcceptedEulaVersion() < QtEulaWindow::EULA_VERSION)
{
showEula(true);
}
#endif
}
void QtMainWindow::hideStartScreen()