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

feat: ctrl/cmd+space to open all connections modal

This commit is contained in:
2022-07-04 12:42:33 +02:00
parent ec5ab73b19
commit a9a4344a71
2 changed files with 10 additions and 1 deletions

View File

@ -73,6 +73,15 @@ document.addEventListener('DOMContentLoaded', () => {
}, 1000);
});
window.addEventListener('keypress', (e: KeyboardEvent) => {
if (e.ctrlKey || e.metaKey) {
if (e.code === 'Space') {
isAllConnectionsModal.value = true;
e.stopPropagation();
}
}
});
onMounted(() => {
ipcRenderer.send('check-for-updates');
checkVersionUpdate();