diff options
author | Cat <89495053+aRealCatTBH@users.noreply.github.com> | 2023-04-10 18:07:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 00:07:36 +0200 |
commit | b21516d44e37d14a84f471ca3116f86d518c2e2d (patch) | |
tree | 567f258e358e48158beb0b777c7609b63f2b1f74 /src/main | |
parent | 65f7cf9503a0c95affb3b6c2b694c6d2d26b90eb (diff) | |
download | Vencord-b21516d44e37d14a84f471ca3116f86d518c2e2d.tar.gz Vencord-b21516d44e37d14a84f471ca3116f86d518c2e2d.tar.bz2 Vencord-b21516d44e37d14a84f471ca3116f86d518c2e2d.zip |
Make QuickCss window title consistent with other windows (#859)
Co-authored-by: V <vendicated@riseup.net>
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/ipcMain.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/ipcMain.ts b/src/main/ipcMain.ts index b0f8fc3..d60200f 100644 --- a/src/main/ipcMain.ts +++ b/src/main/ipcMain.ts @@ -93,7 +93,7 @@ export function initIpc(mainWindow: BrowserWindow) { ipcMain.handle(IpcEvents.OPEN_MONACO_EDITOR, async () => { const win = new BrowserWindow({ - title: "QuickCss Editor", + title: "Vencord QuickCSS Editor", autoHideMenuBar: true, darkTheme: true, webPreferences: { |