File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
app/src/main/java/com/owncloud/android/ui/dialog Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -84,9 +84,10 @@ public void onStart() {
84
84
if (currentDialog != null ) {
85
85
final DatePickerDialog dialog = (DatePickerDialog ) currentDialog ;
86
86
87
- viewThemeUtils .platform .colorTextButtons (dialog .getButton (DatePickerDialog .BUTTON_NEUTRAL ),
88
- dialog .getButton (DatePickerDialog .BUTTON_NEGATIVE ),
89
- dialog .getButton (DatePickerDialog .BUTTON_POSITIVE ));
87
+ //NMC Customization
88
+ dialog .getButton (DatePickerDialog .BUTTON_NEUTRAL ).setTextColor (getResources ().getColor (R .color .text_color , null ));
89
+ dialog .getButton (DatePickerDialog .BUTTON_NEGATIVE ).setTextColor (getResources ().getColor (R .color .text_color , null ));
90
+ dialog .getButton (DatePickerDialog .BUTTON_POSITIVE ).setTextColor (getResources ().getColor (R .color .primary , null ));
90
91
}
91
92
}
92
93
You can’t perform that action at this time.
0 commit comments