mirror of
https://github.com/overte-org/overte.git
synced 2025-04-16 09:07:19 +02:00
Corrected timing bug.
This commit is contained in:
parent
dcab7e4e81
commit
20d2128a10
1 changed files with 1 additions and 3 deletions
|
@ -2220,8 +2220,6 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer, bo
|
|||
connect(this, &QCoreApplication::aboutToQuit, this, &Application::addAssetToWorldMessageClose);
|
||||
connect(&domainHandler, &DomainHandler::domainURLChanged, this, &Application::addAssetToWorldMessageClose);
|
||||
|
||||
updateSystemTabletMode();
|
||||
|
||||
connect(&_myCamera, &Camera::modeUpdated, this, &Application::cameraModeChanged);
|
||||
|
||||
DependencyManager::get<PickManager>()->setShouldPickHUDOperator([&]() { return DependencyManager::get<HMDScriptingInterface>()->isHMDMode(); });
|
||||
|
@ -2271,8 +2269,8 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer, bo
|
|||
if (property(hifi::properties::TEST).isValid()) {
|
||||
Menu::getInstance()->setIsOptionChecked(MenuOption::DesktopTabletToToolbar, false);
|
||||
_desktopTabletBecomesToolbarSetting.set(false);
|
||||
updateSystemTabletMode();
|
||||
}
|
||||
updateSystemTabletMode();
|
||||
|
||||
#if defined(Q_OS_ANDROID)
|
||||
AndroidHelper::instance().init();
|
||||
|
|
Loading…
Reference in a new issue