From e4329c7b6248e93e30468e1550783ff877e04168 Mon Sep 17 00:00:00 2001 From: Yufeng He <40085740+he-yufeng@users.noreply.github.com> Date: Tue, 16 Jun 2026 04:14:15 +0800 Subject: [PATCH] fix(desktop): restore new chat shortcut navigation (#9528) --- ui/desktop/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/desktop/src/main.ts b/ui/desktop/src/main.ts index 81c861b04..c6beba065 100644 --- a/ui/desktop/src/main.ts +++ b/ui/desktop/src/main.ts @@ -2284,7 +2284,7 @@ async function appMain() { accelerator: shortcuts.newChat, click() { const focusedWindow = BrowserWindow.getFocusedWindow(); - if (focusedWindow) focusedWindow.webContents.send('new-chat'); + if (focusedWindow) focusedWindow.webContents.send('set-view', ''); }, }) );