1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Mobile: Fixed colour of placeholder text in dark theme

This commit is contained in:
Laurent Cozic
2019-07-21 17:16:15 +01:00
parent 6e64b950ca
commit 45ad201132
2 changed files with 8 additions and 0 deletions

View File

@@ -803,6 +803,7 @@ class NoteScreenComponent extends BaseScreenComponent {
blurOnSubmit={false}
selectionColor={theme.textSelectionColor}
placeholder={_('Add body')}
placeholderTextColor={theme.colorFaded}
/>
);
}
@@ -850,6 +851,7 @@ class NoteScreenComponent extends BaseScreenComponent {
onChangeText={this.title_changeText}
selectionColor={theme.textSelectionColor}
placeholder={_('Add title')}
placeholderTextColor={theme.colorFaded}
/>
</View>
);