We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f097a3 commit 8180621Copy full SHA for 8180621
1 file changed
src/main/maa.ts
@@ -14,7 +14,7 @@ import { handleDebug } from './customMaa/debugType'
14
import { BASE_RES_PATH, INTERFACE_PATH } from './reszip'
15
16
maa.Global.log_dir = path.join(BASE_RES_PATH, 'logs')
17
-maa.Global.debug_message = true
+maa.Global.debug_mode = true
18
19
let tskr: maa.Tasker
20
let win: BrowserWindow
@@ -170,7 +170,7 @@ ipcMain.handle('maa-get-interface', () => getInterface())
170
ipcMain.handle('maa-query-recognition-detail', (_, recoId) => queryRecognitionDetail(recoId))
171
172
ipcMain.on('maa-debug', (_, isDebug: boolean) => {
173
- maa.Global.debug_message = isDebug
+ maa.Global.debug_mode = isDebug
174
})
175
176
export default (_win: BrowserWindow) => {
0 commit comments