Vanessa 2023-01-05 22:55:41 +08:00
parent c086426a75
commit 3c2ae5606d
2 changed files with 14 additions and 3 deletions

View file

@ -655,8 +655,16 @@ app.whenReady().then(() => {
ipcMain.on('siyuan-config-theme', (event, theme) => {
nativeTheme.themeSource = theme
})
ipcMain.on('siyuan-config-tray', (event, id) => {
BrowserWindow.fromId(id).hide()
ipcMain.on('siyuan-config-tray', (event, data) => {
workspaces.find(item => {
if (item.id === data.id) {
item.browserWindow.hide()
if ('win32' === process.platform || 'linux' === process.platform) {
resetTrayMenu(item.tray, data.languages, item.browserWindow)
}
return true
}
})
})
ipcMain.on('siyuan-export-pdf', (event, data) => {
BrowserWindow.fromId(data.id).webContents.send('siyuan-export-pdf', data)

View file

@ -343,7 +343,10 @@ const winOnClose = (currentWindow: Electron.BrowserWindow, close = false) => {
if (window.siyuan.config.appearance.closeButtonBehavior === 1 && !close) {
// 最小化
if ("windows" === window.siyuan.config.system.os) {
ipcRenderer.send(Constants.SIYUAN_CONFIG_TRAY, getCurrentWindow().id);
ipcRenderer.send(Constants.SIYUAN_CONFIG_TRAY, {
id: getCurrentWindow().id,
languages: window.siyuan.languages["_trayMenu"],
});
} else {
if (currentWindow.isFullScreen()) {
currentWindow.once("leave-full-screen", () => currentWindow.hide());