🎨 桌面端内核进程根据 Electron 主进程判断是否自动退出 Fix https://github.com/siyuan-note/siyuan/issues/7002

This commit is contained in:
Liang Ding 2023-01-06 18:40:30 +08:00
parent 674aba3477
commit 9854969cce
No known key found for this signature in database
GPG key ID: 136F30F901A2231D

View file

@ -58,6 +58,10 @@ func HookDesktopUIProc() {
return true
}
if nil == proc {
return true
}
procName := strings.ToLower(proc.Executable())
for _, name := range uiProcNames {
if strings.Contains(procName, name) {