mirror of
https://github.com/lubosz/overte.git
synced 2025-04-07 15:22:09 +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: {
|
||||
if (Settings.getValue("simplifiedUI/alreadyAutoSelectedAvatarFromInventory", false) ||
|
||||
Settings.getValue("simplifiedUI/closedAvatarPageOfInitialLaunchWindow", false) ||
|
||||
Settings.getValue("simplifiedUI/debugFTUE", 0) === 2) {
|
||||
var debugFTUE = Settings.getValue("simplifiedUI/debugFTUE", 0);
|
||||
|
||||
if ((debugFTUE !== 1 &&
|
||||
(Settings.getValue("simplifiedUI/alreadyAutoSelectedAvatarFromInventory", false) ||
|
||||
Settings.getValue("simplifiedUI/closedAvatarPageOfInitialLaunchWindow", false))) ||
|
||||
debugFTUE === 2) {
|
||||
tempAvatarPageContainer.visible = false;
|
||||
controlsContainer.visible = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue