Mercurial > minori
view src/main.cpp @ 47:d8eb763e6661
information.cpp: add widgets to the list tab, and add an
"optional date" widget like taiga has so users can specify whether to
set the date or not
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 25 Sep 2023 00:43:38 -0400 |
parents | d0adc4aedfc8 |
children |
line wrap: on
line source
#include "core/session.h" #include "gui/window.h" #include <QApplication> #include <QStyleFactory> Session session; int main(int argc, char** argv) { QApplication app(argc, argv); session.config.Load(); MainWindow window; window.resize(941, 750); window.setWindowTitle("Minori"); window.show(); return app.exec(); }