Merge remote-tracking branch 'origin/main'

This commit is contained in:
NonoL3Robot
2021-11-28 19:20:06 +01:00
3 changed files with 91 additions and 2 deletions
+1 -2
View File
@@ -22,7 +22,7 @@ class PDFTest {
frame.setVisible(true);
/* Creation de lobjet PDF */
PDF doc = new PDF(new File("F:/test_pdf1.pdf"));
PDF doc = new PDF(new File("./test_pdf1.pdf"));
/* Creation du JScrollPane contenant notre PDF pour pouvoir scroller */
JScrollPane scrollPane = new JScrollPane(doc);
@@ -33,5 +33,4 @@ class PDFTest {
frame.add(scrollPane);
frame.validate();
}
}