Skip to content

Commit

Permalink
調整
Browse files Browse the repository at this point in the history
  • Loading branch information
sigprogramming committed Dec 16, 2023
1 parent acd5751 commit 7e63578
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Sing/ScoreSequencer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<sequencer-keys
class="sequencer-keys"
:offset="scrollY"
:black-key-width="30"
:black-key-width="28"
/>
<!-- シーケンサ -->
<div
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sing/SequencerKeys.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<text
v-if="whiteKeyInfo.pitch === 'C'"
font-size="10"
:x="blackKeyWidth + 2"
:x="whiteKeyRects[index].x + whiteKeyRects[index].width - 18"
:y="whiteKeyRects[index].y + whiteKeyRects[index].height - 4 - offset"
class="pitchname"
>
Expand Down
2 changes: 1 addition & 1 deletion src/infrastructures/AudioRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ export class PolySynth implements Instrument {
};

this.gainNode = new GainNode(this.audioContext);
this.gainNode.gain.value = options?.volume ?? 0.13;
this.gainNode.gain.value = options?.volume ?? 0.12;
}

/**
Expand Down

0 comments on commit 7e63578

Please sign in to comment.