Rearrange directory

This commit is contained in:
Yuya Ochiai
2015-11-10 21:53:46 +09:00
parent c277aca8dc
commit 506891bb66
4 changed files with 2 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ var showUnreadBadge = function(unreadCount) {
case 'win32':
var window = remote.getCurrentWindow();
if (unreadCount > 0) {
window.setOverlayIcon(__dirname + '/badge.png', 'You have unread channels.');
window.setOverlayIcon(__dirname + '/resources/badge.png', 'You have unread channels.');
}
else {
window.setOverlayIcon(null, '');

View File

@@ -52,7 +52,7 @@ app.on('before-quit', function() {
app.on('ready', function() {
// set up tray icon to show balloon
if (process.platform === 'win32') {
trayIcon = new Tray(__dirname + '/tray.png');
trayIcon = new Tray(__dirname + '/resources/tray.png');
trayIcon.setToolTip(app.getName());
var tray_menu = require('./menus/tray').createDefault();
trayIcon.setContextMenu(tray_menu);

View File

Before

Width:  |  Height:  |  Size: 293 B

After

Width:  |  Height:  |  Size: 293 B

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB