Skip to content

Commit

Permalink
Fix: 必要なセットアップが行われていなかったのを修正 (#1882)
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi authored Feb 28, 2024
1 parent 3c63906 commit 907e237
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/components/Sing/SingEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,16 @@ onetimeWatch(
notes: [],
},
});
await store.dispatch("SET_VOLUME", { volume: 0.6 });
await store.dispatch("SET_PLAYHEAD_POSITION", { position: 0 });
await store.dispatch("SET_LEFT_LOCATOR_POSITION", {
position: 0,
});
await store.dispatch("SET_RIGHT_LOCATOR_POSITION", {
position: 480 * 4 * 16,
});
}
await store.dispatch("SET_VOLUME", { volume: 0.6 });
await store.dispatch("SET_PLAYHEAD_POSITION", { position: 0 });
await store.dispatch("SET_LEFT_LOCATOR_POSITION", {
position: 0,
});
await store.dispatch("SET_RIGHT_LOCATOR_POSITION", {
position: 480 * 4 * 16,
});
isCompletedInitialStartup.value = true;
await store.dispatch("SET_SINGER", {});
Expand Down

0 comments on commit 907e237

Please sign in to comment.