We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97df535 commit ba52d6bCopy full SHA for ba52d6b
CHANGES.txt
@@ -1,3 +1,6 @@
1
+V5.5.4:
2
+* Fixed #506: Autosort is being triggered at design-time
3
+
4
V5.5.3: (08 Jan 2015)
5
* Fixed issue #495: Incorrect text vertical align when changing font in OnPaintText
6
* Fixed Issue #496: Access violation at VT destroy
Source/VirtualTrees.pas
@@ -10396,6 +10396,8 @@ procedure TVirtualTreeColumns.HandleClick(P: TPoint; Button: TMouseButton; Force
10396
NewClickIndex: Integer;
10397
10398
begin
10399
+ if (csDesigning in Header.Treeview.ComponentState) then
10400
+ exit;
10401
// Convert vertical position to local coordinates.
10402
Inc(P.Y, FHeader.FHeight);
10403
NewClickIndex := ColumnFromPosition(P);
0 commit comments