fix: transparency on child windows being lost (#31003)
* fix: transparency on child windows being lost * fix crash * fix a different crash * fix more crash
This commit is contained in:
parent
6dd33b75b2
commit
82da4b0090
2 changed files with 14 additions and 3 deletions
|
@ -362,7 +362,11 @@ void BrowserWindow::Blur() {
|
|||
|
||||
void BrowserWindow::SetBackgroundColor(const std::string& color_name) {
|
||||
BaseWindow::SetBackgroundColor(color_name);
|
||||
web_contents()->SetPageBaseBackgroundColor(ParseHexColor(color_name));
|
||||
SkColor color = ParseHexColor(color_name);
|
||||
web_contents()->SetPageBaseBackgroundColor(color);
|
||||
auto* rwhv = web_contents()->GetRenderWidgetHostView();
|
||||
if (rwhv)
|
||||
rwhv->SetBackgroundColor(color);
|
||||
// Also update the web preferences object otherwise the view will be reset on
|
||||
// the next load URL call
|
||||
if (api_web_contents_) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue