We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02e8351 commit 2c8e01fCopy full SHA for 2c8e01f
src/electron.js
@@ -35,6 +35,8 @@ function createWindow(dir = '') {
35
win.webContents.openDevTools();
36
} else if (input.key === 'F11') {
37
win.setFullScreen(!win.isFullScreen());
38
+ } else if (input.key === 'F5' || input.control && input.key.toLowerCase() === 'r') {
39
+ win.reload();
40
}
41
});
42
0 commit comments