🎨 导出 PDF 预览界面不受主界面缩放影响 Fix https://github.com/siyuan-note/siyuan/issues/6262

This commit is contained in:
Liang Ding 2022-10-18 23:46:17 +08:00
parent 4ceae7fd1b
commit 0eb535c012
No known key found for this signature in database
GPG key ID: 136F30F901A2231D

View file

@ -383,6 +383,7 @@ const renderPDF = (id: string) => {
});
window.siyuan.printWin.webContents.userAgent = `SiYuan/${app.getVersion()} https://b3log.org/siyuan Electron`;
window.siyuan.printWin.once("ready-to-show", () => {
// 导出 PDF 预览界面不受主界面缩放影响 https://github.com/siyuan-note/siyuan/issues/6262
window.siyuan.printWin.webContents.setZoomFactor(1);
})
fetchPost("/api/export/exportTempContent", {content: html}, (response) => {