1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-12-03 21:44:45 +02:00

Added more conditional cmpilation for Windows

- Fixed bug with space char in OSR mode.
- SimpleOSRBrowser demo now follows the destruction sequence steps for browsers in OSR mode.
This commit is contained in:
Salvador Díaz Fau
2018-02-19 13:35:01 +01:00
parent 6ec75477ef
commit a2ad188dc5
29 changed files with 76 additions and 58 deletions

View File

@@ -253,7 +253,7 @@ begin
if (TempForm is TChildForm) and
TChildForm(TempForm).ClientInitialized and
not(TChildForm(TempForm).Closing) then
PostMessage(TChildForm(screen.CustomForms[i]).Handle, WM_CLOSE, 0, 0);
PostMessage(TChildForm(TempForm).Handle, WM_CLOSE, 0, 0);
dec(i);
end;