From 1e0c248044315410aa5c22877ad8b3f8a14fa76d 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),