Skip to content

Commit

Permalink
Fix: ボイスサンプルの再生後に停止アイコンに変化しない問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukumijima committed Nov 25, 2024
1 parent 66376cf commit db279b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Dialog/ModelManageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
@click="toggleAudio(speaker.uuid, style.localId, voiceSampleIndex, sample.audio)"
>
<QIcon
:name="audioPlaying[`${style.localId}-${voiceSampleIndex}`] ? 'sym_r_stop' : 'sym_r_volume_up'"
:name="audioPlaying[`${speaker.uuid}-${style.localId}-${voiceSampleIndex}`] ? 'sym_r_stop' : 'sym_r_volume_up'"
size="25px"
color="white"
/>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Talk/TalkEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ watch(
if (!altPort) return;
store.dispatch("SHOW_NOTIFY_AND_NOT_SHOW_AGAIN_BUTTON", {
message: `${altPort.from}番ポートが使用中であるため ${engineName} は、${altPort.to}番ポートで起動しました。`,
message: `${altPort.from} 番ポートは使用中のため、${engineName} ${altPort.to} 番ポートで起動しました。`,
icon: "sym_r_compare_arrows",
tipName: "engineStartedOnAltPort",
});
Expand All @@ -583,7 +583,7 @@ const loadDraggedFile = (event: { dataTransfer: DataTransfer | null }) => {
store.dispatch("SHOW_ALERT_DIALOG", {
title: "対応していないファイルです",
message:
"テキストファイル (.txt) とAivisSpeechプロジェクトファイル (.aisp) に対応しています。",
"テキストファイル (.txt) と AivisSpeech プロジェクトファイル (.aisp) に対応しています。",
});
}
};
Expand Down

0 comments on commit db279b7

Please sign in to comment.