Skip to content

Commit

Permalink
Merge pull request #264 from Xen4n/master
Browse files Browse the repository at this point in the history
Posts divider brightness fix (now looks like in settings and profile)
  • Loading branch information
LucasGGamerM authored Sep 28, 2023
2 parents 66e6723 + 5b7868b commit 796bdf2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -931,9 +931,9 @@ private class StatusListItemDecoration extends RecyclerView.ItemDecoration{
private Paint dividerPaint=new Paint();

{
dividerPaint.setColor(UiUtils.getThemeColor(getActivity(), GlobalUserPreferences.showDividers ? R.attr.colorM3Outline : R.attr.colorM3Surface));
dividerPaint.setColor(UiUtils.getThemeColor(getActivity(), GlobalUserPreferences.showDividers ? R.attr.colorM3OutlineVariant : R.attr.colorM3Surface));
dividerPaint.setStyle(Paint.Style.STROKE);
dividerPaint.setStrokeWidth(V.dp(0.5f));
dividerPaint.setStrokeWidth(V.dp(1f));
}

@Override
Expand Down

0 comments on commit 796bdf2

Please sign in to comment.