1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-08-04 21:32:54 +02:00

OSR : MouseDown must handle the event regardless of the shift state

This commit is contained in:
Salvador Díaz Fau
2018-02-25 16:57:03 +01:00
parent f1765f7288
commit 4155f11128
4 changed files with 4 additions and 4 deletions

View File

@@ -347,7 +347,7 @@ var
TempEvent : TCefMouseEvent;
TempTime : integer;
begin
if (GlobalCEFApp <> nil) and (chrmosr <> nil) and not(ssShift in Shift) then
if (GlobalCEFApp <> nil) and (chrmosr <> nil) then
begin
Panel1.SetFocus;

View File

@@ -690,7 +690,7 @@ var
TempEvent : TCefMouseEvent;
TempTime : integer;
begin
if (GlobalCEFApp <> nil) and (chrmosr <> nil) and not(ssShift in Shift) then
if (GlobalCEFApp <> nil) and (chrmosr <> nil) then
begin
Panel1.SetFocus;

View File

@@ -725,7 +725,7 @@ var
TempEvent : TCefMouseEvent;
TempTime : integer;
begin
if (GlobalCEFApp <> nil) and (Chromium1 <> nil) and not(ssShift in Shift) then
if (GlobalCEFApp <> nil) and (Chromium1 <> nil) then
begin
Panel1.SetFocus;

View File

@@ -698,7 +698,7 @@ var
TempEvent : TCefMouseEvent;
TempTime : integer;
begin
if (GlobalCEFApp <> nil) and (chrmosr <> nil) and not(ssShift in Shift) then
if (GlobalCEFApp <> nil) and (chrmosr <> nil) then
begin
Panel1.SetFocus;