feat: read full chord actions every time

feat: add special view for compound chords
fix: make it possible to delete compound chords
fixes #94
This commit is contained in:
2024-02-05 20:39:05 +01:00
parent 046595b51f
commit 08f594d164
2 changed files with 18 additions and 5 deletions

View File

@@ -48,9 +48,7 @@ export function deserializeActions(native: bigint): number[] {
const actions = []
for (let i = 0; i < 12; i++) {
const action = Number(native & 0x3ffn)
if (action !== 0) {
actions.push(action)
}
actions.push(action)
native >>= 10n
}