Skip to content

Commit

Permalink
Merge branch 'drag' of github.com:sigprogramming/voicevox into drag
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Dec 28, 2023
2 parents 90a7a0b + 5a36fac commit 74ea318
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Sing/ScoreSequencer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,8 @@ export default defineComponent({
};
const handleKeydown = (event: KeyboardEvent) => {
if (!nowPreviewing.value) {
// プレビュー中の操作は想定外の挙動をしそうなので防止
if (nowPreviewing.value) {
return;
}
switch (event.key) {
Expand Down

0 comments on commit 74ea318

Please sign in to comment.