mirror of
https://github.com/smartfrigde/armcord.git
synced 2026-06-23 13:35:48 +00:00
27 lines
No EOL
1.1 KiB
JavaScript
27 lines
No EOL
1.1 KiB
JavaScript
// dirty hack to replace Vencord's quick css editor with Legcord's
|
||
// fixes the white window bug
|
||
|
||
if (window.VencordNative) {
|
||
Vencord.Settings.useQuickCss = false;
|
||
let settings = VencordNative.settings.get()
|
||
settings.useQuickCss = false;
|
||
VencordNative.settings.set(settings)
|
||
VencordNative.quickCss.openEditor = function openEditor() {
|
||
shelter.ui.openConfirmationModal({
|
||
header: () => "Vencord QuickCSS is not compatible",
|
||
body: () => `Vencord’s QuickCSS editor is not supported in Legcord. Legcord uses its own Quick CSS editor instead which can be found in it's respective themes section.
|
||
Would you like to import your existing Vencord CSS into Legcord?`,
|
||
type: "danger",
|
||
confirmText: "Import CSS",
|
||
cancelText: "Cancel"
|
||
}).then(
|
||
async () => {
|
||
const css = await VencordNative.quickCss.get();
|
||
window.legcord.themes.importQuickCss(css);
|
||
window.legcord.themes.openQuickCss()
|
||
},
|
||
() => console.log("Cancel.")
|
||
);
|
||
|
||
}
|
||
} |