mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 08:19:41 +02:00
LCL: TCustomBitBtn.Spacing default changed to 4 to be delphi compatibile.issue #24541
git-svn-id: trunk@41509 -
This commit is contained in:
parent
641ea1824b
commit
b03327f896
@ -179,7 +179,7 @@ type
|
||||
property Kind: TBitBtnKind read FKind write SetKind default bkCustom;
|
||||
property Layout: TButtonLayout read FLayout write SetLayout default blGlyphLeft;
|
||||
property Margin: integer read FMargin write SetMargin default -1;
|
||||
property Spacing: Integer read FSpacing write SetSpacing default 3;
|
||||
property Spacing: Integer read FSpacing write SetSpacing default 4;
|
||||
property GlyphShowMode: TGlyphShowMode read GetGlyphShowMode write SetGlyphShowMode default gsmApplication;
|
||||
end;
|
||||
|
||||
|
@ -19,7 +19,7 @@ begin
|
||||
FDefaultCaption := False;
|
||||
FKind := bkCustom;
|
||||
FLayout := blGlyphLeft;
|
||||
FSpacing := 3;
|
||||
FSpacing := 4;
|
||||
FMargin := -1;
|
||||
FButtonGlyph := TButtonGlyph.Create;
|
||||
FButtonGlyph.NumGlyphs := 1;
|
||||
|
Loading…
Reference in New Issue
Block a user