mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Fix transparent background for toolbar in DevTools (issue #313).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@351 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -1452,7 +1452,10 @@ void CefBrowserImpl::UIT_ShowDevTools()
|
||||
BrowserDevToolsClient* client = dev_tools_agent_->client();
|
||||
if (!client) {
|
||||
// Create the inspector window.
|
||||
CefString url(base::StringPrintf("%sdevtools.html", kChromeDevToolsURL));
|
||||
CefString url(base::StringPrintf(
|
||||
"%sdevtools.html?docked=false&toolbarColor=rgba(223,223,223,1)&"
|
||||
"textColor=rgba(18,50,114,1)",
|
||||
kChromeDevToolsURL));
|
||||
|
||||
CefPopupFeatures features;
|
||||
CefRefPtr<CefBrowserImpl> browser = UIT_CreatePopupWindow(url, features);
|
||||
|
Reference in New Issue
Block a user