We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ae89c7 commit 281f878Copy full SHA for 281f878
game/addons/tools/Code/Widgets/SoundPlayer/SoundPlayer.Waveform.cs
@@ -101,7 +101,7 @@ public void Analyse()
101
float fRange = maxVal - minVal;
102
103
int columns = MathX.FloorToInt( TimelineView.PositionFromTime( TimelineView.Duration ) / LineSize );
104
- SamplesPerColumn = Math.Max(1, sampleCount / columns);
+ SamplesPerColumn = Math.Max( 1, sampleCount / columns );
105
106
for ( int i = 0; i < columns - 1; i++ )
107
{
game/addons/tools/Code/Widgets/SoundPlayer/SoundPlayer.cs
@@ -78,7 +78,7 @@ protected void OnFrame()
78
79
Timeline.OnFrame();
80
Time = Timeline.Time;
81
-
+
82
PlayOption.Text = Playing ? "Pause" : "Play";
83
PlayOption.Icon = Playing ? "pause" : "play_arrow";
84
0 commit comments