mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-27 06:29:54 +00:00
Fix color of close button on normal reminders.
This change also prevents the title from overlapping with the close button.
This commit is contained in:
committed by
Cody Henthorne
parent
6c608e955e
commit
c16115f71a
@@ -117,6 +117,10 @@ public final class ReminderView extends FrameLayout {
|
||||
}
|
||||
});
|
||||
|
||||
if (reminder.getImportance() == Reminder.Importance.NORMAL) {
|
||||
closeButton.setColorFilter(ContextCompat.getColor(getContext(), R.color.signal_text_primary));
|
||||
}
|
||||
|
||||
int progress = reminder.getProgress();
|
||||
if (progress != -1) {
|
||||
progressBar.setProgress(progress);
|
||||
|
||||
Reference in New Issue
Block a user