* 应用窗口材质到 Update 窗口
(win: BrowserWindow)
| 478 | * 应用窗口材质到 Update 窗口 |
| 479 | */ |
| 480 | private applyMaterialToUpdateWindow(win: BrowserWindow): void { |
| 481 | try { |
| 482 | const settings = databaseAPI.dbGet('settings-general') |
| 483 | const material = settings?.windowMaterial || getDefaultWindowMaterial() |
| 484 | applyWindowMaterial(win, material) |
| 485 | } catch (error) { |
| 486 | console.error('[Updater] 应用窗口材质失败:', error) |
| 487 | } |
| 488 | } |
| 489 | |
| 490 | /** |
| 491 | * 创建更新窗口 |
no test coverage detected