This commit is contained in:
zt64 2023-04-19 22:18:25 -04:00
parent 315fdf299f
commit 1028bf0d6e
2 changed files with 2 additions and 2 deletions

View file

@ -232,7 +232,7 @@ export function createMainWindow() {
}, },
icon: ICON_PATH, icon: ICON_PATH,
frame: VencordSettings.store.frameless !== true, frame: VencordSettings.store.frameless !== true,
...Settings.store.staticTitle ? { title: "Vencord" } : {}, ...(Settings.store.staticTitle ? { title: "Vencord" } : {}),
...(VencordSettings.store.macosTranslucency ...(VencordSettings.store.macosTranslucency
? { ? {
vibrancy: "sidebar", vibrancy: "sidebar",

View file

@ -35,7 +35,7 @@ export default function SettingsUi() {
[ [
"staticTitle", "staticTitle",
"Static Title", "Static Title",
"Makes the window title \"Vencord\" instead of changing to the current page" 'Makes the window title "Vencord" instead of changing to the current page'
] ]
]; ];