Add F5 to reload

This commit is contained in:
smartfridge 2021-05-04 12:08:30 +02:00
parent 533056eaf0
commit 3a77b0067b

View file

@ -1,10 +1,18 @@
const customTitlebar = require('custom-electron-titlebar')
const electronLocalshortcut = require("electron-localshortcut");
const { remote } = require("electron");
window.addEventListener('DOMContentLoaded', () => {
new customTitlebar.Titlebar({
backgroundColor: customTitlebar.Color.fromHex("#2C2F33"),
unfocusEffect: true,
menu: true,
});
})
const currentWindow = remote.getCurrentWindow();
electronLocalshortcut.register(currentWindow, "F5", () => {
location.reload();
});
require("./utils/capturer.js")