Documents/Pdf: Add /s to PdfToPrinter call

This commit is contained in:
2023-09-28 20:05:29 +02:00
parent aadf536d13
commit 2bf850bc55
2 changed files with 2 additions and 2 deletions

View File

@ -59,6 +59,7 @@ namespace Elwig.Documents {
public static async Task Print(string path, int copies = 1) {
var p = new Process() { StartInfo = new() { FileName = PdfToPrinter } };
p.StartInfo.ArgumentList.Add(path);
p.StartInfo.ArgumentList.Add("/s");
p.StartInfo.ArgumentList.Add($"copies={copies}");
p.Start();
await p.WaitForExitAsync();

View File

@ -890,8 +890,7 @@ namespace Elwig.Windows {
if (App.Config.Debug) {
doc.Show();
} else {
await doc.Print(2);
Activate();
doc.Print(2);
}
}
FinishButton.Cursor = null;