fix for up not applying

This commit is contained in:
booploops 2021-12-30 04:01:42 -08:00
parent 84026fc262
commit a662192b2d
2 changed files with 2 additions and 1 deletions

View file

@ -26,6 +26,7 @@ const configDefaults = {
"spatial": false, "spatial": false,
"test": false, "test": false,
"spatial_properties": { "spatial_properties": {
"presets": [],
"gain": 0.8, "gain": 0.8,
"room_dimensions": { "room_dimensions": {
"width": 32, "width": 32,

View file

@ -75,7 +75,7 @@
<label> <label>
Up Up
<select class="md-select" @input="setRoom()" <select class="md-select" @input="setRoom()"
v-model="app.cfg.audio.spatial_properties.room_materials.up"> v-model="room_materials.up">
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option> <option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
</select> </select>
</label> </label>