diff options
author | Vendicated <vendicated@riseup.net> | 2023-01-22 04:29:58 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-01-22 04:29:58 +0100 |
commit | 68e80c4d4ce162275f68a9a8099211626f1fe4ad (patch) | |
tree | 137740abaf8e01f45629a4ce7a0c43b01de407ff /src/utils | |
parent | b4f98e5066aa41f986865f4b598593afc9161d3b (diff) | |
download | Vencord-68e80c4d4ce162275f68a9a8099211626f1fe4ad.tar.gz Vencord-68e80c4d4ce162275f68a9a8099211626f1fe4ad.tar.bz2 Vencord-68e80c4d4ce162275f68a9a8099211626f1fe4ad.zip |
Fix small QuickCss bug
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/quickCss.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/quickCss.ts b/src/utils/quickCss.ts index de4eaef..4ae1023 100644 --- a/src/utils/quickCss.ts +++ b/src/utils/quickCss.ts @@ -29,10 +29,10 @@ export async function toggle(isEnabled: boolean) { style = document.createElement("style"); style.id = "vencord-custom-css"; document.head.appendChild(style); - VencordNative.ipc.on(IpcEvents.QUICK_CSS_UPDATE, (_, css: string) => style.innerText = css); + VencordNative.ipc.on(IpcEvents.QUICK_CSS_UPDATE, (_, css: string) => style.textContent = css); style.textContent = await VencordNative.ipc.invoke(IpcEvents.GET_QUICK_CSS); } - } else // @ts-ignore yes typescript, property 'disabled' does exist on type 'HTMLStyleElement' u should try reading the docs some time + } else style.disabled = !isEnabled; } |