Mercurial > minori
view src/main.cc @ 107:49c8d1976869
themes/dark: make QMenuBar and QMenu look better
this is what Sublime Text does, and I prefer it to having that ugly
blue color
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 05 Nov 2023 17:44:49 -0500 |
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(); }