mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 23:58:06 +02:00
LCL: TCustomSpeedButton: do not store Glyph in lfm when Action provides the Glyph, issue #27357, from BBaz
git-svn-id: trunk@47542 -
This commit is contained in:
parent
c1e57c70af
commit
bd1a801f5d
@ -271,6 +271,7 @@ type
|
||||
FFlat: Boolean;
|
||||
FMouseInControl: Boolean;
|
||||
function GetGlyph: TBitmap;
|
||||
function IsGlyphStored: Boolean;
|
||||
procedure SetShowCaption(const AValue: boolean);
|
||||
procedure UpdateExclusive;
|
||||
function GetTransparent: Boolean;
|
||||
@ -336,7 +337,7 @@ type
|
||||
property Color default clBtnFace;
|
||||
property Down: Boolean read FDown write SetDown default false;
|
||||
property Flat: Boolean read FFlat write SetFlat default false;
|
||||
property Glyph: TBitmap read GetGlyph write SetGlyph;
|
||||
property Glyph: TBitmap read GetGlyph write SetGlyph stored IsGlyphStored;
|
||||
property GroupIndex: Integer read FGroupIndex write SetGroupIndex default 0;
|
||||
property Layout: TButtonLayout read FLayout write SetLayout default blGlyphLeft;
|
||||
property Margin: integer read FMargin write SetMargin default -1;
|
||||
|
@ -438,6 +438,20 @@ begin
|
||||
Result := FGlyph.Glyph;
|
||||
end;
|
||||
|
||||
function TCustomSpeedButton.IsGlyphStored: Boolean;
|
||||
var
|
||||
act: TCustomAction;
|
||||
begin
|
||||
result := true;
|
||||
if Action <> nil then
|
||||
begin
|
||||
act := TCustomAction(Action);
|
||||
if (act.ActionList <> nil) and (act.ActionList.Images <> nil) and
|
||||
(act.ImageIndex >= 0) and (act.ImageIndex < act.ActionList.Images.Count) then
|
||||
result := false;
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TCustomSpeedButton.SetShowCaption(const AValue: boolean);
|
||||
begin
|
||||
if FShowCaption=AValue then exit;
|
||||
|
Loading…
Reference in New Issue
Block a user