lcl: don't capture mouse for button controls (no need and moreover locks qt applications) (fixes issue #0010843)

git-svn-id: trunk@14215 -
This commit is contained in:
paul 2008-02-21 04:06:21 +00:00
parent 85407b63eb
commit 6635c91635

View File

@ -68,7 +68,7 @@ constructor TButtonControl.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
FUseOnChange:=DefaultButtonControlUseOnChange;
ControlStyle:=ControlStyle-csMultiClicks-[csAcceptsControls];
ControlStyle:=ControlStyle-csMultiClicks-[csAcceptsControls,csCaptureMouse];
end;
{ TButtonActionLink }