|
@@ -859,12 +859,16 @@ app.whenReady().then(() => {
|
|
|
});
|
|
|
});
|
|
|
ipcMain.on("siyuan-export-newwindow", (event, data) => {
|
|
|
+ const parentWnd = getWindowByContentId(event.sender.id);
|
|
|
+ // The PDF/Word export preview window automatically adjusts according to the size of the main window https://github.com/siyuan-note/siyuan/issues/10554
|
|
|
+ const width = parentWnd.getBounds().width * 0.8;
|
|
|
+ const height = parentWnd.getBounds().height * 0.8;
|
|
|
const printWin = new BrowserWindow({
|
|
|
- parent: getWindowByContentId(event.sender.id),
|
|
|
- modal: true,
|
|
|
+ parent: parentWnd,
|
|
|
+ modal: false,
|
|
|
show: true,
|
|
|
- width: Math.floor(screen.getPrimaryDisplay().size.width * 0.8),
|
|
|
- height: Math.floor(screen.getPrimaryDisplay().workAreaSize.height * 0.8),
|
|
|
+ width: width,
|
|
|
+ height: height,
|
|
|
resizable: false,
|
|
|
frame: "darwin" === process.platform,
|
|
|
icon: path.join(appDir, "stage", "icon-large.png"),
|