* Changed TImage.Transparent default to Flase (delphi compatible)

git-svn-id: trunk@12722 -
This commit is contained in:
marc 2007-11-03 18:22:15 +00:00
parent e2a52c1ccb
commit f745b551ef

View File

@ -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;