quick game wasn't checking for hidden themes. It should, but this will at least make them not-crash. The results are kind of amusing.
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}