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:
13
src/common/shortcuts.ts
Normal file
13
src/common/shortcuts.ts
Normal 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'
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user