Make run button execute in live mode (#8876)

What can I say? It's not quite a bug. Rather a wrong implementation

Anyway, fixes #8810
This commit is contained in:
Adam Obuchowicz 2024-01-29 10:50:52 +01:00 committed by GitHub
parent 084245868d
commit ad7fad42fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -330,7 +330,7 @@ function onPlayButtonPress() {
if (modeValue == undefined) {
return
}
projectStore.executionContext.recompute('all', modeValue === 'live' ? 'Live' : 'Design')
projectStore.executionContext.recompute('all', 'Live')
})
}