1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Mobile: Fixes #426: Fix missing menu icon on Android 4

This commit is contained in:
Laurent Cozic
2018-05-01 19:30:41 +01:00
parent b33d30ca47
commit 01f4faf8f1

View File

@@ -99,7 +99,8 @@ class ScreenHeaderComponent extends Component {
height: 18, height: 18,
}, },
contextMenuTrigger: { contextMenuTrigger: {
fontSize: 25, fontSize: 30,
paddingLeft: 10,
paddingRight: theme.marginRight, paddingRight: theme.marginRight,
color: theme.raisedColor, color: theme.raisedColor,
fontWeight: 'bold', fontWeight: 'bold',
@@ -445,7 +446,7 @@ class ScreenHeaderComponent extends Component {
const menuComp = !showContextMenuButton ? null : ( const menuComp = !showContextMenuButton ? null : (
<Menu onSelect={(value) => this.menu_select(value)} style={this.styles().contextMenu}> <Menu onSelect={(value) => this.menu_select(value)} style={this.styles().contextMenu}>
<MenuTrigger style={{ paddingTop: PADDING_V, paddingBottom: PADDING_V }}> <MenuTrigger style={{ paddingTop: PADDING_V, paddingBottom: PADDING_V }}>
<Text style={this.styles().contextMenuTrigger}> &#8942;</Text> <Icon name='md-more' style={this.styles().contextMenuTrigger} />
</MenuTrigger> </MenuTrigger>
<MenuOptions> <MenuOptions>
<ScrollView style={{ maxHeight: windowHeight }}> <ScrollView style={{ maxHeight: windowHeight }}>