This website works better with JavaScript.
Home
Explore
Help
Sign In
ohtaekwon
/
ist-react-native-date-picker
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
fix: setTextColor should always run on superclass (
#377
)
master
Henning Hall
4 years ago
committed by
GitHub
parent
9cfaec0161
commit
fd51f85f95
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
android/src/main/java/com/henninghall/date_picker/pickers/AndroidNative.java
+ 1
- 1
android/src/main/java/com/henninghall/date_picker/pickers/AndroidNative.java
View File
@ -54,7 +54,7 @@ public class AndroidNative extends NumberPicker implements Picker {
int
color
=
Color
.
parseColor
(
stringColor
)
;
if
(
Build
.
VERSION
.
SDK_INT
>
=
29
)
{
setTextColor
(
color
)
;
super
.
setTextColor
(
color
)
;
return
;
}
Write
Preview
Loading…
Cancel
Save