We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1ba9c6 commit 4945a4cCopy full SHA for 4945a4c
1 file changed
FlashpointSecurePlayer/ProgressManager.cs
@@ -537,7 +537,9 @@ private static int ProgressFormValue {
537
// if we haven't completed, ignore the value in the marquee style
538
// (note: we don't check indeterminate state here, in case we are trying to leave that state)
539
if (ProgressManager.style == ProgressBarStyle.Marquee) {
540
- ProgressFormStyle = ProgressManager.style;
+ // it's really important that there's no race condition here, so
541
+ // we set ProgressFormStyle to Marquee specifically, not the style field
542
+ ProgressFormStyle = ProgressBarStyle.Marquee;
543
return;
544
}
545
0 commit comments