mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-11 18:20:41 +01:00
* Changed TImage.Transparent default to Flase (delphi compatible)
git-svn-id: trunk@12722 -
This commit is contained in:
parent
e2a52c1ccb
commit
f745b551ef
@ -19,12 +19,11 @@
|
||||
constructor TCustomImage.Create(TheOwner: TComponent);
|
||||
begin
|
||||
inherited Create(TheOwner);
|
||||
// obsolete: FCompStyle := csImage;
|
||||
ControlStyle:= [csCaptureMouse, csClickEvents, csDoubleClicks];
|
||||
AutoSize := False;
|
||||
FCenter := False;
|
||||
FStretch := False;
|
||||
FTransparent := True;
|
||||
FTransparent := False;
|
||||
FPicture := TPicture.Create;
|
||||
FPicture.OnChange := @PictureChanged;
|
||||
FUseParentCanvas := false;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user