Moved movelock out of vuex

This commit is contained in:
Joel Collins 2019-05-08 17:50:10 +01:00
parent d83470a901
commit 56e43ae77f
2 changed files with 12 additions and 15 deletions

View file

@ -15,7 +15,6 @@ export default new Vuex.Store({
error: '',
apiConfig: {},
apiState: {},
moveLock: false,
settings: {
disableStream: false,
autoGpuPreview: false,
@ -35,9 +34,6 @@ export default new Vuex.Store({
changeWaiting(state, waiting) {
state.waiting = waiting
},
changeMoveLock(state, lock) {
state.moveLock = lock
},
commitError(state, errorString) {
state.error = errorString;
},