mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-25 22:37:02 -04:00
Fix small QuickCss bug
This commit is contained in:
parent
b4f98e5066
commit
68e80c4d4c
2 changed files with 3 additions and 3 deletions
|
@ -78,7 +78,7 @@ ipcMain.handle(IpcEvents.SET_SETTINGS, (_, s) => {
|
|||
export function initIpc(mainWindow: BrowserWindow) {
|
||||
open(QUICKCSS_PATH, "a+").then(fd => {
|
||||
fd.close();
|
||||
watch(QUICKCSS_PATH, debounce(async () => {
|
||||
watch(QUICKCSS_PATH, { persistent: false }, debounce(async () => {
|
||||
mainWindow.webContents.postMessage(IpcEvents.QUICK_CSS_UPDATE, await readCss());
|
||||
}, 50));
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue