From bc6912e30f55a9d2313ab11f13a2c6d8ec926627 Mon Sep 17 00:00:00 2001 From: vincents Date: Thu, 22 May 2008 14:15:03 +0000 Subject: [PATCH] LCL: Set default value of TCustomImage.Transparent to false (bug #10220, #10778) git-svn-id: trunk@15206 - --- lcl/extctrls.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lcl/extctrls.pp b/lcl/extctrls.pp index 8e1f4b6aa3..f4acdb597b 100644 --- a/lcl/extctrls.pp +++ b/lcl/extctrls.pp @@ -585,7 +585,7 @@ type property OnMouseMove; property OnMouseUp; property Stretch: Boolean read FStretch write SetStretch; - property Transparent: Boolean read FTransparent write SetTransparent default true; + property Transparent: Boolean read FTransparent write SetTransparent default false; property Proportional: Boolean read FProportional write SetProportional default false; end;