Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Merge pull request #888 from LiskHQ/887-about-dialog-on-windows
Browse files Browse the repository at this point in the history
Fix about dialog on Windows - Closes #887
  • Loading branch information
slaweet authored Oct 19, 2017
2 parents 446c755 + d98c4e8 commit f708c51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ module.exports = (app, copyright, i18n) => {
if (focusedWindow) {
const options = {
buttons: ['OK'],
icon: `${__dirname}/assets/lisk.png`,
message: `${i18n.t('Lisk Nano')} \n ${i18n.t('Version')} ${app.getVersion()}\n${copyright}`,
icon: `${__dirname}/assets/images/lisk.png`,
message: `${i18n.t('Lisk Nano')}\n${i18n.t('Version')} ${app.getVersion()}\n${copyright}`,
};
electron.dialog.showMessageBox(focusedWindow, options, () => {});
}
Expand Down

0 comments on commit f708c51

Please sign in to comment.