tools/drawMapTest/main.cpp
author nemo
Sun, 05 Feb 2012 18:20:02 -0500
changeset 6630 f8bbfa9a1a36
parent 4425 2314bb0c433d
permissions -rw-r--r--
Disable opacity across the board. It is screwed up in OSX and apparently also Linux. Bad artifacts and overall performance.

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}