diff --git a/src/components/Dialog/AllDialog.vue b/src/components/Dialog/AllDialog.vue index 981cae021e..052434d17e 100644 --- a/src/components/Dialog/AllDialog.vue +++ b/src/components/Dialog/AllDialog.vue @@ -100,7 +100,6 @@ const isCharacterOrderDialogOpenComputed = computed({ }), }); -// TODO: デフォルトスタイル選択(ソング)の実装 // デフォルトスタイル選択(トーク) const orderedTalkCharacterInfos = computed(() => { return filterCharacterInfosByStyleType( diff --git a/src/components/Sing/CharacterMenuButton/MenuButton.vue b/src/components/Sing/CharacterMenuButton/MenuButton.vue index 47511384c4..e4e748937c 100644 --- a/src/components/Sing/CharacterMenuButton/MenuButton.vue +++ b/src/components/Sing/CharacterMenuButton/MenuButton.vue @@ -200,7 +200,6 @@ const getDefaultStyle = (speakerUuid: string) => { // ここで取得されるcharacterInfoには、ソングエディタ向けのスタイルのみ含まれるので、 // その中の最初のスタイルをソングエディタにおける仮のデフォルトスタイルとする - // TODO: ソングエディタ向けのデフォルトスタイルをどうするか考える const defaultStyleId = characterInfo?.metas.styles[0].styleId; const defaultStyle = characterInfo?.metas.styles.find( diff --git a/src/store/singing.ts b/src/store/singing.ts index f16b5ba369..b772620ebe 100644 --- a/src/store/singing.ts +++ b/src/store/singing.ts @@ -230,11 +230,8 @@ export const singingStore = createPartialStore({ const engineId = singer?.engineId ?? state.engineIds[0]; - // 最初のスタイルをソングエディタにおける仮のデフォルトスタイルとする - // TODO: ソングエディタ向けのデフォルトスタイルをどうするか考える const defaultStyleId = userOrderedCharacterInfos[0].metas.styles[0].styleId; - const styleId = singer?.styleId ?? defaultStyleId; dispatch("SETUP_SINGER", { singer: { engineId, styleId } });