antares/src/renderer/store/plugins/ipcShortcuts.js

13 lines
361 B
JavaScript
Raw Normal View History

import { ipcRenderer } from 'electron';
export default store => {
2022-04-21 14:39:24 +02:00
ipcRenderer.on('toggle-preferences', () => {
store.dispatch('application/showSettingModal', 'general');
});
2022-04-21 14:39:24 +02:00
ipcRenderer.on('open-updates-preferences', () => {
store.dispatch('application/showSettingModal', 'update');
ipcRenderer.send('check-for-updates');
});
};