Icon typo fixed in about dialog (#146)

Icon.png does not exist here.
This commit is contained in:
Akash Nimare 2016-07-17 06:56:32 +05:30 committed by Guillermo Rauch
parent a63fcebaed
commit ec4483cb7f

View file

@ -276,7 +276,7 @@ ${process.platform} ${process.arch} ${os.release()}`;
title: `About ${appName}`, title: `About ${appName}`,
message: `${appName} ${app.getVersion()}`, message: `${appName} ${app.getVersion()}`,
detail: 'Created by Guillermo Rauch', detail: 'Created by Guillermo Rauch',
icon: path.join(__dirname, 'static/Icon.png'), icon: path.join(__dirname, 'static/icon.png'),
buttons: [] buttons: []
}); });
} }