1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-11-23 21:34:53 +02:00

Update to CEF 73.1.12

- Added context menu option in JSDemo to get the vertical scroll position.
- Now TChromium uses the same keyboard events for the browser and the DevTools.
- Fixed a MiniBrowser issue with the F12 keyboard shortcut. Now you can press F12 to hide and show the DevTools correctly.
This commit is contained in:
Salvador Díaz Fau
2019-03-22 13:12:44 +01:00
parent 15ac7120e4
commit 4682fe3a19
5 changed files with 37 additions and 13 deletions

View File

@@ -62,7 +62,7 @@ uses
const
CEF_SUPPORTED_VERSION_MAJOR = 73;
CEF_SUPPORTED_VERSION_MINOR = 1;
CEF_SUPPORTED_VERSION_RELEASE = 11;
CEF_SUPPORTED_VERSION_RELEASE = 12;
CEF_SUPPORTED_VERSION_BUILD = 0;
CEF_CHROMEELF_VERSION_MAJOR = 73;

View File

@@ -3122,7 +3122,14 @@ begin
InitializeSettings(FDevBrowserSettings);
InitializeDevToolsWindowInfo(aDevTools);
TempClient := TCefClientOwn.Create;
TempClient := TCustomClientHandler.Create(Self, False, False,
False, False,
MustCreateKeyboardHandler,
False, False,
False, False,
False, False,
False, False,
False);
if (inspectElementAt.x <> low(integer)) and
(inspectElementAt.y <> low(integer)) then