diff --git a/lib/touchbar-menu.js b/lib/touchbar-menu.js index fa2fae9e..90a64410 100644 --- a/lib/touchbar-menu.js +++ b/lib/touchbar-menu.js @@ -26,17 +26,16 @@ const trash = new TouchBarButton({ const newNote = new TouchBarButton({ label: '✎', click: () => { + mainWindow.webContents.send('list:navigate', '/home') mainWindow.webContents.send('top:new-note') } }) module.exports = new TouchBar([ allNotes, - new TouchBarSpacer({size: 'small'}), starredNotes, - new TouchBarSpacer({size: 'small'}), trash, - new TouchBarSpacer({size: 'large'}), + new TouchBarSpacer({size: 'small'}), newNote ])