feat(pdf): allow changing page size via attribute

This commit is contained in:
Elian Doran
2025-02-01 17:10:49 +02:00
parent 9a3a6f90ea
commit f41138800f
2 changed files with 3 additions and 0 deletions

View File

@@ -261,6 +261,7 @@ export default class NoteDetailWidget extends NoteContextAwareWidget {
const { ipcRenderer } = utils.dynamicRequire("electron");
ipcRenderer.send("export-as-pdf", {
title: this.note.title,
pageSize: this.note.getAttributeValue("label", "pageSize") ?? "Letter",
landscape: this.note.hasAttribute("label", "printLandscape")
});
}