1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-27 23:28:38 +02:00

Fixed icons and warnings

This commit is contained in:
Laurent Cozic
2020-10-13 21:32:52 +01:00
parent 3b0e3f6f43
commit 8296676fd5
8 changed files with 105 additions and 121 deletions

View File

@ -323,7 +323,7 @@ class ScreenHeaderComponent extends React.PureComponent {
return (
<TouchableOpacity onPress={onPress}>
<View style={styles.iconButton}>
<Icon name="md-funnel" style={styles.topIcon} />
<Icon name="filter-outline" style={styles.topIcon} />
</View>
</TouchableOpacity>
);
@ -481,7 +481,7 @@ class ScreenHeaderComponent extends React.PureComponent {
!menuOptionComponents.length || !showContextMenuButton ? null : (
<Menu onSelect={value => this.menu_select(value)} style={this.styles().contextMenu}>
<MenuTrigger style={contextMenuStyle}>
<Icon name="md-more" style={this.styles().contextMenuTrigger} />
<Icon name="more-vert" style={this.styles().contextMenuTrigger} />
</MenuTrigger>
<MenuOptions>
<ScrollView style={{ maxHeight: windowHeight }}>{menuOptionComponents}</ScrollView>