set flake to non critical, no touches until game is starding, moved some variables to be initialized in the right place
#include <QtGui/QApplication>
#include "editor.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
editor w;
w.show();
return a.exec();
}