Skip to content

Commit

Permalink
Fix the equave shift keys on virtual QWERTY
Browse files Browse the repository at this point in the history
ref #564
  • Loading branch information
frostburn committed Feb 19, 2024
1 parent ca3ed85 commit 2256ca5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## (UNRELEASED)
* Documentation: Move changelog to a dedicated file [#556](https://github.com/xenharmonic-devs/scale-workshop/issues/556)
* Bug fix: Fix the bottom row of virtual QWERTY being offset by one [#452](https://github.com/xenharmonic-devs/scale-workshop/issues/452)
* Bug fix: Fix the equave shift keys on virtual QWERTY [#564](https://github.com/xenharmonic-devs/scale-workshop/issues/563)

## 2.3.6
* Feature: Be more informative about why vals or commas do not span a rank-2 temperament [#540](https://github.com/xenharmonic-devs/scale-workshop/issues/540)
Expand Down
4 changes: 2 additions & 2 deletions src/views/VirtualQwerty.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ defineEmits(['update:equaveShift', 'update:degreeShift'])
:degreeDownCode="state.degreeDownCode"
:equaveShift="state.equaveShift"
:degreeShift="state.degreeShift"
@update:equaveShift="$emit('update:equaveShift', $event)"
@update:degreeShift="$emit('update:degreeShift', $event)"
@update:equaveShift="state.equaveShift = $event"
@update:degreeShift="state.degreeShift = $event"
></VirtualTypingKeyboard>
</main>
</template>

0 comments on commit 2256ca5

Please sign in to comment.