change notebook icon in toolbar and search result (#1252)

see f6f0bcf1c3
pull/1257/head
Helmut K. C. Tessarek 2019-02-24 06:10:55 -05:00 committed by Laurent Cozic
parent ddd513fe09
commit 4845a21287
2 changed files with 2 additions and 2 deletions

View File

@ -394,7 +394,7 @@ class MainScreenComponent extends React.Component {
headerItems.push({
title: _('New notebook'),
iconName: 'fa-folder-o',
iconName: 'fa-book',
onClick: () => { this.doCommand({ name: 'newNotebook' }) },
});

View File

@ -1373,7 +1373,7 @@ class NoteTextComponent extends React.Component {
if (note && this.state.folder && ['Search', 'Tag'].includes(this.props.notesParentType)) {
toolbarItems.push({
title: _('In: %s', this.state.folder.title),
iconName: 'fa-folder-o',
iconName: 'fa-book',
enabled: false,
});
}