add icon mac

This commit is contained in:
Johannes Millan 2017-01-16 22:03:43 +01:00
parent 9a918a1de3
commit 52499c78dd
3 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -163,7 +163,7 @@ electron.ipcMain.on('CHANGED_CURRENT_TASK', (ev, task) => {
if (task.timeSpent && task.timeSpent._data) {
task.timeSpent = moment.duration(task.timeSpent._data);
timeStr += task.timeSpent.asMinutes().toString() + 'm';
timeStr += parseInt(task.timeSpent.asMinutes()).toString() + 'm';
}
if (task.timeEstimate) {
timeStr += '/' + moment.duration(task.timeEstimate).asMinutes() + 'm ';