Skip to content

Commit af85946

Browse files
authored
remove personal multiplier
1 parent dedda85 commit af85946

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WindowsAudioSession/UI/FFT/FFTDrawer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ double[] barSizes
8585
maxValue = barSizes[i];
8686
}
8787

88-
var barHeight = Math.Max(0, maxValue * (height - 2 * Margin) / 255d) * 2;
88+
var barHeight = Math.Max(0, maxValue * (height - 2 * Margin) / 255d);
8989
var y_top = y0 + height - 2 * Margin - barHeight;
9090

9191
var bar = _bars[i];

0 commit comments

Comments
 (0)