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 262ff7a commit 8662ab8Copy full SHA for 8662ab8
packages/react-devtools/app.js
@@ -32,6 +32,11 @@ app.on('ready', function() {
32
},
33
});
34
35
+ // set dock icon for macos
36
+ if (process.platform === 'darwin') {
37
+ app.dock.setIcon(join(__dirname, 'icons/icon128.png'));
38
+ }
39
+
40
// https://stackoverflow.com/questions/32402327/
41
mainWindow.webContents.on('new-window', function(event, url) {
42
event.preventDefault();
0 commit comments