diff --git a/NAPS2.Core/WinForms/WinFormsOperationProgress.cs b/NAPS2.Core/WinForms/WinFormsOperationProgress.cs index 5b40196375..0a1d08e00b 100644 --- a/NAPS2.Core/WinForms/WinFormsOperationProgress.cs +++ b/NAPS2.Core/WinForms/WinFormsOperationProgress.cs @@ -89,7 +89,8 @@ public void ShowBackgroundProgress(IOperation op) if (!op.IsFinished) { - notificationManager.ParentForm.SafeInvoke(() => notificationManager.OperationProgress(this, op)); + //notificationManager.ParentForm.SafeInvoke(() => notificationManager.OperationProgress(this, op)); + notificationManager.ParentForm.Invoke(() => notificationManager.OperationProgress(this, op)); } }