diff --git a/src/main/mainWindow.ts b/src/main/mainWindow.ts
index 9a220b3..5550c6b 100644
--- a/src/main/mainWindow.ts
+++ b/src/main/mainWindow.ts
@@ -262,13 +262,15 @@ function createMainWindow() {
},
icon: ICON_PATH,
frame: VencordSettings.store.frameless !== true,
- ...(Settings.store.transparent
+ ...(Settings.store.transparencyOption !== "none"
? {
backgroundColor: "#00000000",
backgroundMaterial: Settings.store.transparencyOption,
transparent: true
}
- : {}),
+ : {
+ transparent: false
+ }),
...(Settings.store.staticTitle ? { title: "Vencord" } : {}),
...(VencordSettings.store.macosTranslucency
? {
diff --git a/src/renderer/components/Settings.tsx b/src/renderer/components/Settings.tsx
index 583e58d..b5d8c3d 100644
--- a/src/renderer/components/Settings.tsx
+++ b/src/renderer/components/Settings.tsx
@@ -100,26 +100,25 @@ export default function SettingsUi() {
{supportsWindowsTransparency && (
<>
- (Settings.transparent = v)}
- note="Requires a full restart"
- >
- Enable window transparency
-
-
Transparency Options
+
+ Requires a full restart. You will need a theme that supports transparency for this to work.
+