Skip to content

Commit

Permalink
fix: image selected Color Filter
Browse files Browse the repository at this point in the history
  • Loading branch information
omg-xtao committed Aug 3, 2024
1 parent cc69079 commit 9891f34
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ private void clear() {
private int param;
private Object currentParentObject;
private boolean canceledLoading;
private static PorterDuffColorFilter selectedColorFilter = new PorterDuffColorFilter(0xffdddddd, PorterDuff.Mode.SRC_IN);
private static PorterDuffColorFilter selectedGroupColorFilter = new PorterDuffColorFilter(0xffbbbbbb, PorterDuff.Mode.SRC_IN);
private static PorterDuffColorFilter selectedColorFilter = new PorterDuffColorFilter(0xffdddddd, PorterDuff.Mode.MULTIPLY);
private static PorterDuffColorFilter selectedGroupColorFilter = new PorterDuffColorFilter(0xffbbbbbb, PorterDuff.Mode.MULTIPLY);
private boolean forceLoding;
private long currentTime;
private int fileLoadingPriority = FileLoader.PRIORITY_NORMAL;
Expand Down

0 comments on commit 9891f34

Please sign in to comment.