Skip to content

Commit

Permalink
Fix Rewards verified badge in dark mode (uplift to 1.62.x) (#21646)
Browse files Browse the repository at this point in the history
Uplift of #21635 (squashed) to release
  • Loading branch information
brave-builds authored Jan 19, 2024
1 parent 3b25c37 commit 21eae39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions browser/ui/views/brave_actions/brave_rewards_action_view.cc
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ class RewardsBadgeImageSource : public brave::BraveIconWithBadgeImageSource {
gfx::Rect image_rect(badge_rect);
gfx::Outsets outsets;
outsets.set_left(2);
outsets.set_right(1);
outsets.set_bottom(2);
image_rect.Outset(outsets);

gfx::RectF check_rect(image_rect);
check_rect.Inset(4);
check_rect.Inset(3);
cc::PaintFlags check_flags;
check_flags.setStyle(cc::PaintFlags::kFill_Style);
check_flags.setColor(SK_ColorWHITE);
Expand Down

0 comments on commit 21eae39

Please sign in to comment.