allow Linux interface to connect to domain when DISABLE_QML is true

This commit is contained in:
Seth Alves 2019-12-10 09:52:12 -08:00
parent 6312a7cdd8
commit f97c3217a5

View file

@ -3395,6 +3395,10 @@ void Application::initializeUi() {
setIsInterstitialMode(true);
#if defined(DISABLE_QML) && defined(Q_OS_LINUX)
resumeAfterLoginDialogActionTaken();
#endif
}
@ -5662,6 +5666,7 @@ void Application::resumeAfterLoginDialogActionTaken() {
return;
}
#if !defined(DISABLE_QML)
if (!isHMDMode() && getDesktopTabletBecomesToolbarSetting()) {
auto toolbar = DependencyManager::get<ToolbarScriptingInterface>()->getToolbar("com.highfidelity.interface.toolbar.system");
toolbar->writeProperty("visible", true);
@ -5671,6 +5676,7 @@ void Application::resumeAfterLoginDialogActionTaken() {
}
updateSystemTabletMode();
#endif
{
auto userInputMapper = DependencyManager::get<UserInputMapper>();