diff --git a/desktop/src/main/init.ts b/desktop/src/main/init.ts index 4ae187d21..c7d8435e8 100644 --- a/desktop/src/main/init.ts +++ b/desktop/src/main/init.ts @@ -94,7 +94,7 @@ export const setupTrayItem = (mainWindow: BrowserWindow) => { ); const trayIcon = nativeImage.createFromPath(trayImgPath); const tray = new Tray(trayIcon); - tray.setToolTip("Ente"); + tray.setToolTip("Ente Photos"); tray.setContextMenu(createTrayContextMenu(mainWindow)); }; diff --git a/desktop/src/main/menu.ts b/desktop/src/main/menu.ts index c6ac1688a..f6b37e9b0 100644 --- a/desktop/src/main/menu.ts +++ b/desktop/src/main/menu.ts @@ -53,7 +53,7 @@ export const createApplicationMenu = async (mainWindow: BrowserWindow) => { return Menu.buildFromTemplate([ { - label: "ente", + label: "Ente Photos", submenu: [ ...macOSOnly([ { @@ -155,7 +155,7 @@ export const createApplicationMenu = async (mainWindow: BrowserWindow) => { { type: "separator" }, { label: "Bring All to Front", role: "front" }, { type: "separator" }, - { label: "Ente", role: "window" }, + { label: "Ente Photos", role: "window" }, ]), ], },