You've already forked joplin
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:
@@ -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}> ⋮</Text>
|
<Icon name='md-more' style={this.styles().contextMenuTrigger} />
|
||||||
</MenuTrigger>
|
</MenuTrigger>
|
||||||
<MenuOptions>
|
<MenuOptions>
|
||||||
<ScrollView style={{ maxHeight: windowHeight }}>
|
<ScrollView style={{ maxHeight: windowHeight }}>
|
||||||
|
|||||||
Reference in New Issue
Block a user