Fix cursor often jumping to center when putting target while moving cursor
It was about this time this HORRIBLY ANNOYING bug got fixed. Oh boy!
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}