Fix parameter's type of Tray.setImage()

`Tray.setImage()` can take `string` parameter the same as constructor of
`Tray`.
This commit is contained in:
rhysd 2015-09-08 18:57:31 +09:00
parent 9c76211533
commit 978a94de72
2 changed files with 2 additions and 1 deletions

View File

@ -409,6 +409,7 @@ app.on('ready', () => {
]);
appIcon.setToolTip('This is my application.');
appIcon.setContextMenu(contextMenu);
appIcon.setImage('/path/to/new/icon');
});
// clipboard

View File

@ -1212,7 +1212,7 @@ declare module GitHubElectron {
/**
* Sets the image associated with this tray icon.
*/
setImage(image: NativeImage): void;
setImage(image: NativeImage|string): void;
/**
* Sets the image associated with this tray icon when pressed.
*/