Mercurial > minori
view src/main.cc @ 103:621084cc542c
resources: add icons
also remove ye olde qdarkstyle, as it's not even used anymore
there's more configuring to OS X bundles now as well, along with
more version info on Windows
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 03 Nov 2023 22:52:41 -0400 |
parents | 582b2fca1561 |
children | 2004b41d4a59 |
line wrap: on
line source
#include "core/session.h" #include "gui/window.h" #include <QApplication> #include <QStyleFactory> #include <QLocale> Session session; int main(int argc, char** argv) { QApplication app(argc, argv); /* this is a reasonable default, I presume */ QLocale::setDefault(QLocale(QLocale::English, QLocale::UnitedStates)); session.config.Load(); MainWindow window; window.resize(941, 750); window.setWindowTitle("Minori"); window.show(); return app.exec(); }