mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-27 16:40:32 +02:00
grids: Change default value of CellHintPriority to chpAllNoDefault. Publish CellHintPriority for TDrawGrid (issue #32243).
git-svn-id: trunk@55639 -
This commit is contained in:
parent
3d1ee5f174
commit
f4c18e624f
@ -1154,7 +1154,7 @@ type
|
||||
property AutoFillColumns: boolean read FAutoFillColumns write SetAutoFillColumns default false;
|
||||
property BorderStyle:TBorderStyle read FGridBorderStyle write SetBorderStyle default bsSingle;
|
||||
property BorderColor: TColor read FBorderColor write SetBorderColor default cl3DDKShadow;
|
||||
property CellHintPriority: TCellHintPriority read FCellHintPriority write FCellHintPriority default chpTruncOnly;
|
||||
property CellHintPriority: TCellHintPriority read FCellHintPriority write FCellHintPriority default chpAllNoDefault;
|
||||
property Col: Integer read FCol write SetCol;
|
||||
property ColCount: Integer read GetColCount write SetColCount default 5;
|
||||
property ColRow: TPoint read GetQuickColRow write SetQuickColRow;
|
||||
@ -1508,6 +1508,7 @@ type
|
||||
//property BiDiMode;
|
||||
property BorderSpacing;
|
||||
property BorderStyle;
|
||||
property CellHintPriority;
|
||||
property Color;
|
||||
property ColCount;
|
||||
property ColumnClickSorts;
|
||||
@ -9401,7 +9402,7 @@ begin
|
||||
FDefaultTextStyle.Wordbreak := False;
|
||||
FDefaultTextStyle.SingleLine:= True;
|
||||
|
||||
FCellHintPriority := chpTruncOnly;
|
||||
FCellHintPriority := chpAllNoDefault;
|
||||
|
||||
FButtonEditor := TButtonCellEditor.Create(nil);
|
||||
FButtonEditor.Name:='ButtonEditor';
|
||||
|
Loading…
Reference in New Issue
Block a user