quick fix for linux thing

This commit is contained in:
scatterflower 2020-08-27 20:50:27 -05:00
parent fa4e38d45a
commit a106b483da

View File

@ -40,9 +40,9 @@ int main(int argc, char* argv[])
#ifdef __linux__
// We have to do this before the QApplication is instantiated
// As a result, we can't use QCommandLineParser
for(int i; i < argc; i++) {
for(int i = 0; i < argc; i++) {
if(strcmp("-l", argv[i]) == 0 || strcmp("--headless", argv[i]) == 0){
setenv("QT_QPA_PLATFORM", "minimal");
setenv("QT_QPA_PLATFORM", "minimal", 1);
}
}
#endif