mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-15 21:18:06 +02:00
allow Linux interface to connect to domain when DISABLE_QML is true
This commit is contained in:
parent
6312a7cdd8
commit
f97c3217a5
1 changed files with 6 additions and 0 deletions
|
@ -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>();
|
||||
|
|
Loading…
Reference in a new issue