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 7d531ab commit e8d231aCopy full SHA for e8d231a
2 files changed
Components/FakeMenu.wlx
@@ -53,7 +53,9 @@ LayoutView = ExportString[{
53
<|"label"->"Clear outputs", "name"->"clearoutputs", "a"->"Alt+u"|>,
54
<|"type"->"separator"|>,
55
<|"label"->"Zoom in", "name"->"zoomIn"|>,
56
- <|"label"->"Zoom out", "name"->"zoomOut"|>
+ <|"label"->"Zoom out", "name"->"zoomOut"|>,
57
+ <|"type"->"separator"|>,
58
+ <|"label"->"Dev Tools", "name"->"devTools"|>
59
}
60
61
} // Flatten, "JSON"]
Electron/main.js
@@ -980,6 +980,10 @@ callFakeMenu["zoomIn"] = () => {
980
windows.focused.call('zoomIn', true);
981
982
983
+callFakeMenu["devTools"] = () => {
984
+ windows.focused.win.webContents.openDevTools()
985
+}
986
+
987
callFakeMenu["zoomOut"] = () => {
988
windows.focused.call('zoomOut', true);
989
0 commit comments