From e710be4f6412171ddea11e7dcf127a0c3a8a6ac9 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Mon, 5 Nov 2018 13:38:41 -0500 Subject: [PATCH] cefclient: Fix new window always on top (issue #1468) --- tests/cefclient/browser/root_window.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/cefclient/browser/root_window.cc b/tests/cefclient/browser/root_window.cc index 5ba9f3976..0ab59edb8 100644 --- a/tests/cefclient/browser/root_window.cc +++ b/tests/cefclient/browser/root_window.cc @@ -10,7 +10,8 @@ namespace client { RootWindowConfig::RootWindowConfig() - : with_controls(true), + : always_on_top(false), + with_controls(true), with_osr(false), with_extension(false), initially_hidden(false),