Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
X-20A committed Jun 7, 2024
1 parent cc7f005 commit 696d5ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/components/Talk/AudioInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ const selectedAudioKeys = computed(() =>
// 句読点などの無音時間はひとまず倍率verを表示 のち必要に応じ絶対値に切替
const parameters = computed<Parameter[]>(() => {
const plParam: Parameter = {
label: "句読点などの無音時間(秒)",
label: "文内無音(秒)",
slider: previewSliderHelper({
modelValue: () => query.value?.pauseLength ?? null,
disable: () => uiLocked.value,
Expand All @@ -382,7 +382,7 @@ const parameters = computed<Parameter[]>(() => {
};
const plsParam: Parameter = {
label: "句読点などの無音時間(倍)",
label: "文内無音(倍)",
slider: previewSliderHelper({
modelValue: () => query.value?.pauseLengthScale ?? null,
disable: () => uiLocked.value,
Expand Down Expand Up @@ -520,7 +520,7 @@ const parameters = computed<Parameter[]>(() => {
action: "COMMAND_MULTI_SET_AUDIO_POST_PHONEME_LENGTH",
key: "postPhonemeLength",
},
switchPauseLengthMode.value === "SCALE" ? plsParam : plParam,
plsParam,
];
// switchPauseLengthModeの変更に伴って更新
const newParam = switchPauseLengthMode.value === "SCALE" ? plsParam : plParam;
Expand Down

0 comments on commit 696d5ad

Please sign in to comment.