Browse Source

fix: setTextColor should always run on superclass (#377)

master
Henning Hall 4 years ago
committed by GitHub
parent
commit
fd51f85f95
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +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;
}

Loading…
Cancel
Save