Skip to content

Commit

Permalink
ソングエディタでキャラクター選択の挙動がおかしくなる問題を修正 (#1785)
Browse files Browse the repository at this point in the history
* fix song editor default style bug

* Apply suggestions from code review

---------

Co-authored-by: Hiroshiba <[email protected]>
  • Loading branch information
y-chan and Hiroshiba authored Jan 29, 2024
1 parent a7016a7 commit 8b65f82
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/Sing/CharacterMenuButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,11 @@ export default defineComponent({
const characterInfo = userOrderedCharacterInfos.value?.find(
(info) => info.metas.speakerUuid === speakerUuid
);
const defaultStyleId = store.state.defaultStyleIds.find(
(x) => x.speakerUuid === speakerUuid
)?.defaultStyleId;
// ここで取得されるcharacterInfoには、ソングエディタ向けのスタイルのみ含まれるので、
// その中の最初のスタイルをソングエディタにおける仮のデフォルトスタイルとする
// TODO: ソングエディタ向けのデフォルトスタイルをどうするか考える
const defaultStyleId = characterInfo?.metas.styles[0].styleId;
const defaultStyle = characterInfo?.metas.styles.find(
(style) => style.styleId === defaultStyleId
Expand Down

0 comments on commit 8b65f82

Please sign in to comment.