mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 93.0.4577.0 (#902210)
This commit is contained in:
@@ -91,10 +91,10 @@ CefWindowX11::CefWindowX11(CefRefPtr<CefBrowserHostBase> browser,
|
||||
.depth = depth,
|
||||
.wid = xwindow_,
|
||||
.parent = parent_xwindow_,
|
||||
.x = bounds.x(),
|
||||
.y = bounds.y(),
|
||||
.width = bounds.width(),
|
||||
.height = bounds.height(),
|
||||
.x = static_cast<int16_t>(bounds.x()),
|
||||
.y = static_cast<int16_t>(bounds.y()),
|
||||
.width = static_cast<uint16_t>(bounds.width()),
|
||||
.height = static_cast<uint16_t>(bounds.height()),
|
||||
.c_class = x11::WindowClass::InputOutput,
|
||||
.visual = visual,
|
||||
.background_pixel = 0,
|
||||
|
Reference in New Issue
Block a user