Skip to content

Commit ba52d6b

Browse files
Merged revision(s) 804 from trunk/Source:
Fixed JAM-Software#506: Autosort is being triggered at design-time
1 parent 97df535 commit ba52d6b

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
V5.5.4:
2+
* Fixed #506: Autosort is being triggered at design-time
3+
14
V5.5.3: (08 Jan 2015)
25
* Fixed issue #495: Incorrect text vertical align when changing font in OnPaintText
36
* Fixed Issue #496: Access violation at VT destroy

Source/VirtualTrees.pas

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10396,6 +10396,8 @@ procedure TVirtualTreeColumns.HandleClick(P: TPoint; Button: TMouseButton; Force
1039610396
NewClickIndex: Integer;
1039710397

1039810398
begin
10399+
if (csDesigning in Header.Treeview.ComponentState) then
10400+
exit;
1039910401
// Convert vertical position to local coordinates.
1040010402
Inc(P.Y, FHeader.FHeight);
1040110403
NewClickIndex := ColumnFromPosition(P);

0 commit comments

Comments
 (0)