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 | |
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>
-rw-r--r-- | src/components/monacoWin.html | 2 | ||||
-rw-r--r-- | src/main/ipcMain.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/monacoWin.html b/src/components/monacoWin.html index edf273d..d9d2412 100644 --- a/src/components/monacoWin.html +++ b/src/components/monacoWin.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> - <title>QuickCss Editor</title> + <title>Vencord QuickCSS Editor</title> <link rel="stylesheet" data-name="vs/editor/editor.main" href="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.34.0/min/vs/editor/editor.main.min.css"> <style> 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: { |