Missing Theme Color in ProfileActivity (QrItem)

I've added the missing theme color in ProfileActivity for the Share QR Code Button
This commit is contained in:
Laky64 2022-03-24 03:05:43 +01:00 committed by GitHub
parent 0abe4541dd
commit eaaa7f5b03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8278,7 +8278,8 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter.
arrayList.add(new ThemeDescription(listView, 0, new Class[]{TextDetailCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText));
arrayList.add(new ThemeDescription(listView, 0, new Class[]{TextDetailCell.class}, new String[]{"valueTextView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayText2));
arrayList.add(new ThemeDescription(listView, ThemeDescription.FLAG_BACKGROUNDFILTER, new Class[]{TextDetailCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_switch2TrackChecked));
arrayList.add(new ThemeDescription(listView, 0, new Class[]{HeaderCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlueHeader));
arrayList.add(new ThemeDescription(listView, 0, new Class[]{SettingsSuggestionCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlueHeader));
@ -8580,4 +8581,4 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter.
}
return ColorUtils.calculateLuminance(color) > 0.7f;
}
}
}