Skip to content

Commit ef5b28c

Browse files
Fix empty progress bar (#87)
1 parent e821228 commit ef5b28c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Ookii.Dialogs.Wpf/ProgressDialog.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ private void RunProgressDialog(IntPtr owner, object argument, CancellationToken
787787
flags |= Ookii.Dialogs.Wpf.Interop.ProgressDialogFlags.NoMinimize;
788788

789789
_ownerHandle = owner;
790-
_dialog.Timer(Interop.ProgressDialogTimerAction.Resume, pvReserved: null);
790+
791791
_dialog.StartProgressDialog(owner, null, flags, IntPtr.Zero);
792792
_backgroundWorker.RunWorkerAsync(argument);
793793
}

0 commit comments

Comments
 (0)