yangjie #22

Merged
yangqiang merged 99 commits from yangjie into master 2024-10-22 16:11:46 +08:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 70469962be - Show all commits

View File

@ -354,7 +354,9 @@ app.on('ready', () => {
if (config.bool) { if (config.bool) {
childWindow[config.key].show() childWindow[config.key].show()
} else { } else {
childWindow[config.key].hide() if (childWindow[config.key].isVisible()) {
childWindow[config.key].hide()
}
} }
}); });
// 隐藏主窗口 // 隐藏主窗口