Skip to content

Commit 46036bd

Browse files
committed
Changed previewer to be disabled by default
1 parent d57d2ff commit 46036bd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ static void Main(string[] args)
2323
var document = new InvoiceDocument(model);
2424

2525
// Generate PDF file and show it in the default viewer
26-
//GenerateDocumentAndShow(document);
26+
GenerateDocumentAndShow(document);
2727

2828
// Or open the QuestPDF Previewer and experiment with the document's design
2929
// in real-time without recompilation after each code change
30-
document.ShowInPreviewer();
30+
//document.ShowInPreviewer();
3131
}
3232

3333
static void GenerateDocumentAndShow(InvoiceDocument document)

0 commit comments

Comments
 (0)