mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 09:39:31 +02:00
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:
parent
85407b63eb
commit
6635c91635
@ -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 }
|
||||
|
Loading…
Reference in New Issue
Block a user