Skip to content

Commit

Permalink
Merge pull request #13746 from brave/default_browser_prompt_dialog_bg…
Browse files Browse the repository at this point in the history
…_color

Fixed wrong background color of default browser prompt dialog
  • Loading branch information
simonhong authored and emerick committed Jun 15, 2022
1 parent 085b6bb commit 4e4187c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions browser/ui/views/brave_default_browser_dialog_view.cc
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ BraveDefaultBrowserDialogView::CreateNonClientFrameView(views::Widget* widget) {
const views::BubbleBorder::Shadow kShadow =
views::BubbleBorder::DIALOG_SHADOW;
std::unique_ptr<views::BubbleBorder> border =
std::make_unique<views::BubbleBorder>(views::BubbleBorder::FLOAT, kShadow,
gfx::kPlaceholderColor);
std::make_unique<views::BubbleBorder>(views::BubbleBorder::FLOAT,
kShadow);
if (GetParams().round_corners)
border->SetCornerRadius(GetCornerRadius());
frame->SetFootnoteView(DisownFootnoteView());
Expand Down

0 comments on commit 4e4187c

Please sign in to comment.