1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

fix(Linux): ctrl+space shortcut not working

This commit is contained in:
2022-07-13 18:25:42 +02:00
parent e0946f04f7
commit ed3d35f131
3 changed files with 40 additions and 16 deletions

13
src/common/shortcuts.ts Normal file
View File

@@ -0,0 +1,13 @@
interface ShortcutRecord {
event: string;
keys: Electron.Accelerator;
description: string;
}
export const shortcuts: ShortcutRecord[] = [
{
event: 'open-connections-modal',
keys: 'CommandOrControl+Space',
description: 'Show all connections'
}
];