Printing/Pdf: Increase init delay to 2 seconds

This commit is contained in:
2024-03-04 21:35:48 +01:00
parent 7e1843a1b3
commit e9d0eec3bd

View File

@ -38,7 +38,7 @@ namespace Elwig.Helpers.Printing {
p.StartInfo.ArgumentList.Add("-d"); p.StartInfo.ArgumentList.Add("-d");
p.StartInfo.ArgumentList.Add(App.TempPath); p.StartInfo.ArgumentList.Add(App.TempPath);
p.Start(); p.Start();
await Task.Delay(1000); await Task.Delay(2000);
WinziPrintProc = p; WinziPrintProc = p;
evtHandler?.Invoke(); evtHandler?.Invoke();
} }