mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-03 15:40:51 +02:00
Fix menu update on app reopened
This commit is contained in:
parent
43d967329c
commit
824a93f900
1 changed files with 4 additions and 2 deletions
|
@ -57,9 +57,13 @@ Rectangle {
|
||||||
}
|
}
|
||||||
if (settings.otherAvatarsCollisionsEnabled) {
|
if (settings.otherAvatarsCollisionsEnabled) {
|
||||||
otherAvatarsCollisionsEnabledRadiobutton.checked = true;
|
otherAvatarsCollisionsEnabledRadiobutton.checked = true;
|
||||||
|
} else {
|
||||||
|
otherAvatarsCollisionsDisabledRadiobutton.checked = true;
|
||||||
}
|
}
|
||||||
if (settings.collisionsEnabled) {
|
if (settings.collisionsEnabled) {
|
||||||
environmentCollisionsEnabledRadiobutton.checked = true;
|
environmentCollisionsEnabledRadiobutton.checked = true;
|
||||||
|
} else {
|
||||||
|
environmentCollisionsDisabledRadiobutton.checked = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
avatarAnimationJSON = settings.animGraphUrl;
|
avatarAnimationJSON = settings.animGraphUrl;
|
||||||
|
@ -281,7 +285,6 @@ Rectangle {
|
||||||
Layout.leftMargin: -20
|
Layout.leftMargin: -20
|
||||||
|
|
||||||
ButtonGroup.group: otherAvatarsOnOff
|
ButtonGroup.group: otherAvatarsOnOff
|
||||||
checked: true
|
|
||||||
|
|
||||||
colorScheme: hifi.colorSchemes.light
|
colorScheme: hifi.colorSchemes.light
|
||||||
fontSize: 17
|
fontSize: 17
|
||||||
|
@ -326,7 +329,6 @@ Rectangle {
|
||||||
Layout.leftMargin: -20
|
Layout.leftMargin: -20
|
||||||
|
|
||||||
ButtonGroup.group: worldOnOff
|
ButtonGroup.group: worldOnOff
|
||||||
checked: true
|
|
||||||
|
|
||||||
colorScheme: hifi.colorSchemes.light
|
colorScheme: hifi.colorSchemes.light
|
||||||
fontSize: 17
|
fontSize: 17
|
||||||
|
|
Loading…
Reference in a new issue