This commit is contained in:
Julien Wadel 2024-11-08 10:56:56 -05:00
parent c3c7424aeb
commit b03213ccef
2 changed files with 3 additions and 2 deletions

View file

@ -139,7 +139,7 @@ macosx-codesigning:
# Deploy - Nightly
#################################################
macosx-makefile-deploy:
macosx-deploy:
stage: deploy
tags: [ "macos-xcode15" ]
needs:

View file

@ -423,7 +423,6 @@ void App::init() {
}
lInfo() << log().arg("Display server : %1").arg(platformName());
DesktopTools::init();
}
void App::initCore() {
@ -443,6 +442,8 @@ void App::initCore() {
auto settings = SettingsCore::create();
lDebug() << log().arg("Creating Ui");
QMetaObject::invokeMethod(App::getInstance()->thread(), [this, settings, coreStarted] {
// Initialize DestopTools here to have logs into files in case of errors.
DesktopTools::init();
// QML
mEngine = new QQmlApplicationEngine(this);
assert(mEngine);