bugfix: reverse Y in alternative joggle control doesnt work

Signed-off-by: Stefan Dej <meteyou@gmail.com>
This commit is contained in:
Stefan Dej
2021-04-05 18:36:11 +02:00
parent 55800c3ba6
commit 31ababd23d

View File

@@ -336,7 +336,7 @@
},
reverseY: {
get() {
return this.$store.state.gui.dashboard.control.reverseZ;
return this.$store.state.gui.dashboard.control.reverseY;
},
set(reverseY) {
return this.$store.dispatch('gui/setSettings', { dashboard: { control: { reverseY } } })