mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-23 08:48:28 +00:00
Move settings check after wavesrv startup (#854)
This commit is contained in:
parent
ce3ce7e6fd
commit
d5abf7ea95
1 changed files with 9 additions and 5 deletions
|
|
@ -852,11 +852,7 @@ async function appMain() {
|
|||
fs.mkdirSync(waveHomeDir);
|
||||
}
|
||||
makeAppMenu();
|
||||
const fullConfig = await services.FileService.GetFullConfig();
|
||||
const settings = fullConfig.settings;
|
||||
if (settings?.["window:disablehardwareacceleration"]) {
|
||||
electronApp.disableHardwareAcceleration();
|
||||
}
|
||||
|
||||
try {
|
||||
await runWaveSrv();
|
||||
} catch (e) {
|
||||
|
|
@ -864,6 +860,14 @@ async function appMain() {
|
|||
}
|
||||
const ready = await waveSrvReady;
|
||||
console.log("wavesrv ready signal received", ready, Date.now() - startTs, "ms");
|
||||
|
||||
const fullConfig = await services.FileService.GetFullConfig();
|
||||
const settings = fullConfig.settings;
|
||||
if (settings?.["window:disablehardwareacceleration"]) {
|
||||
console.log("disabling hardware acceleration");
|
||||
electronApp.disableHardwareAcceleration();
|
||||
}
|
||||
|
||||
await electronApp.whenReady();
|
||||
configureAuthKeyRequestInjection(electron.session.defaultSession);
|
||||
await relaunchBrowserWindows();
|
||||
|
|
|
|||
Loading…
Reference in a new issue