mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-18 01:28:45 +02:00
Fix bug with debugFTUE === 1
This commit is contained in:
parent
19acd76854
commit
222b1fbd20
1 changed files with 6 additions and 3 deletions
|
@ -27,9 +27,12 @@ Rectangle {
|
||||||
}
|
}
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
if (Settings.getValue("simplifiedUI/alreadyAutoSelectedAvatarFromInventory", false) ||
|
var debugFTUE = Settings.getValue("simplifiedUI/debugFTUE", 0);
|
||||||
Settings.getValue("simplifiedUI/closedAvatarPageOfInitialLaunchWindow", false) ||
|
|
||||||
Settings.getValue("simplifiedUI/debugFTUE", 0) === 2) {
|
if ((debugFTUE !== 1 &&
|
||||||
|
(Settings.getValue("simplifiedUI/alreadyAutoSelectedAvatarFromInventory", false) ||
|
||||||
|
Settings.getValue("simplifiedUI/closedAvatarPageOfInitialLaunchWindow", false))) ||
|
||||||
|
debugFTUE === 2) {
|
||||||
tempAvatarPageContainer.visible = false;
|
tempAvatarPageContainer.visible = false;
|
||||||
controlsContainer.visible = true;
|
controlsContainer.visible = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue