release: 0.7.0 #37

Merged
dorian merged 3 commits from release/0.7.0 into main 2022-08-14 17:55:45 +02:00
Showing only changes of commit 6ca5b81f6d - Show all commits

View file

@ -33,6 +33,9 @@ int main(int argc, char *argv[])
QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
QGuiApplication app(argc, argv); QGuiApplication app(argc, argv);
QFont f = app.font();
f.setPixelSize(16);
app.setFont(f);
// translation // translation
QString localeName = QLocale::system().bcp47Name(); QString localeName = QLocale::system().bcp47Name();