We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c97277e commit 7f55cc5Copy full SHA for 7f55cc5
osu.Game/Screens/Edit/Submission/SubmissionStageProgress.cs
@@ -149,6 +149,8 @@ protected override void LoadComplete()
149
progress.BindValueChanged(_ => Scheduler.AddOnce(updateProgress), true);
150
151
progressSampleChannel = progressSample?.GetChannel();
152
+ if (progressSampleChannel != null)
153
+ progressSampleChannel.ManualFree = true;
154
}
155
156
public void SetNotStarted() => status.Value = StageStatusType.NotStarted;
@@ -181,6 +183,7 @@ protected override void Dispose(bool isDisposing)
181
183
base.Dispose(isDisposing);
182
184
185
progressSampleChannel?.Stop();
186
+ progressSampleChannel?.Dispose();
187
188
189
private const float transition_duration = 200;
0 commit comments