🔧 chore: 移除不再使用的快捷键初始化功能

This commit is contained in:
algerkong
2025-04-23 09:05:24 +08:00
parent 304c24a673
commit 64f5fcaee4
2 changed files with 0 additions and 13 deletions
-10
View File
@@ -1,10 +0,0 @@
import { isElectron } from '.';
import { handleShortcutAction } from './appShortcuts';
export function initShortcut() {
if (isElectron) {
window.electron.ipcRenderer.on('global-shortcut', async (_, action: string) => {
handleShortcutAction(action);
});
}
}