Skip to content

Commit

Permalink
fix: full ch strip - better placement of freq text on graph eq
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon authored and olzzon committed Nov 2, 2020
1 parent b243a71 commit 28a96ef
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions client/components/ChanStripFull.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,27 +52,35 @@ interface IFreqLabels {
const EQ_FREQ_LABELS: IFreqLabels[] = [
{
label: '50',
posY: 300,
posY: 400,
},
{
label: '100',
posY: 550,
},
{
label: '250',
posY: 700,
},
{
label: '500',
posY: 800,
posY: 850,
},
{
label: '1k',
posY: 1050,
posY: 1000,
},
{
label: '2k',
posY: 1150,
},
{
label: '5k',
posY: 1300,
posY: 1320,
},
{
label: '10k',
posY: 1550,
posY: 1460,
},
]

Expand Down

0 comments on commit 28a96ef

Please sign in to comment.