From 1c02dcde771eef4e6cb157ed0bbbc047794f8949 Mon Sep 17 00:00:00 2001 From: cztomczak Date: Wed, 6 Nov 2024 19:43:22 +0100 Subject: [PATCH] Use Alloy style. --- cef/browser_window.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cef/browser_window.cpp b/cef/browser_window.cpp index adbb457..ddc6cd7 100644 --- a/cef/browser_window.cpp +++ b/cef/browser_window.cpp @@ -160,6 +160,7 @@ bool BrowserWindow::CreateBrowserControl(const wchar_t* navigateUrl) { // Information used when creating the native window. CefWindowInfo window_info; + window_info.runtime_style = CEF_RUNTIME_STYLE_ALLOY; int width = rect.right - rect.left; int height = rect.bottom - rect.top; CefRect cef_rect(rect.left, rect.top, width, height);