Merge pull request #1330 from HifiExperiments/scriptInitializers

fix script initialization order bug
This commit is contained in:
ksuprynowicz 2025-03-02 12:06:56 +01:00 committed by GitHub
commit 7175feded4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -815,8 +815,8 @@ void Application::initialize(const QCommandLineParser &parser) {
// Needs to happen AFTER the render engine initialization to access its configuration // Needs to happen AFTER the render engine initialization to access its configuration
initializeUi(); initializeUi();
init();
setupSignalsAndOperators(); setupSignalsAndOperators();
init();
qCDebug(interfaceapp, "init() complete."); qCDebug(interfaceapp, "init() complete.");
// create thread for parsing of octree data independent of the main network and rendering threads // create thread for parsing of octree data independent of the main network and rendering threads