diff --git a/lcl/imglist.pp b/lcl/imglist.pp index 7d0507e9d5..7b68d65abd 100644 --- a/lcl/imglist.pp +++ b/lcl/imglist.pp @@ -360,7 +360,7 @@ type property ResolutionCount: Integer read GetResolutionCount; function Resolutions: TCustomImageListResolutionEnumerator; function ResolutionsDesc: TCustomImageListResolutionEnumerator; - property Scaled: Boolean read FScaled write FScaled default True; + property Scaled: Boolean read FScaled write FScaled default False; property ShareImages: Boolean read FShareImages write SetShareImages default False; property ImageType: TImageType read FImageType write FImageType default itImage; property OnGetWidthForPPI: TCustomImageListGetWidthForPPI read FOnGetWidthForPPI write FOnGetWidthForPPI; diff --git a/lcl/include/imglist.inc b/lcl/include/imglist.inc index 0afc758a6d..ccf5ce8614 100644 --- a/lcl/include/imglist.inc +++ b/lcl/include/imglist.inc @@ -1319,7 +1319,6 @@ begin inherited Create(AOwner); FHeight := 16; FWidth := 16; - FScaled := True; Initialize; end;