yangjie #22

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

View File

@ -46,7 +46,11 @@ const Operation: React.FC = () => {
key: 'quit', key: 'quit',
title: '关闭', title: '关闭',
onClick: (key: OperationKeyType) => { onClick: (key: OperationKeyType) => {
window.electron.setViewStatus(key) if (location.hash.indexOf('/meeting') === -1) {
window.electron.setViewStatus(key)
} else {
window.electron.quit(false)
}
}, },
show: true, show: true,
},]) },])