Fix incorrect size of Beach theme icons
The icons had about double the required size. This caused a graphical glitch when selecting Beach and hand-drawn map.
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}