1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-02 22:49:09 +02:00

Mobile: Fixes #358: Fix cursor color in dark mode

This commit is contained in:
Laurent Cozic
2018-04-11 19:25:07 +02:00
parent 67145d9104
commit d3fca3d6cc
10 changed files with 510 additions and 885 deletions

View File

@@ -481,6 +481,7 @@ class NoteScreenComponent extends BaseScreenComponent {
value={note.body}
onChangeText={(text) => this.body_changeText(text)}
blurOnSubmit={false}
selectionColor={theme.textSelectionColor}
/>
);
}
@@ -545,6 +546,7 @@ class NoteScreenComponent extends BaseScreenComponent {
style={titleTextInputStyle}
value={note.title}
onChangeText={(text) => this.title_changeText(text)}
selectionColor={theme.textSelectionColor}
/>
</View>
);