1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-07-02 22:26:53 +02:00

Fix #119 : All units in the source folder start with "uCEF"

- Fixed TCustomAudioHandler creation in uCEFClient.pas
- Fixed "title" parsing in uCEFDragAndDropMgr.pas
This commit is contained in:
Salvador Díaz Fau
2019-04-04 10:26:44 +02:00
parent 0ae96d07d5
commit dbc4900358
36 changed files with 63 additions and 63 deletions

View File

@ -323,7 +323,8 @@ end;
procedure TMiniBrowserFrm.Chromium1BeforeClose(Sender: TObject; const browser: ICefBrowser);
begin
if (Chromium1.BrowserId = 0) then // The main browser is being destroyed
// The main browser is being destroyed
if (Chromium1.BrowserId = 0) then
begin
FCanClose := True;
PostMessage(Handle, WM_CLOSE, 0, 0);