Skip to content

Commit 3fbcf47

Browse files
committed
Fixed issue #1299: Remove unnecessary debug output in TBaseVirtualTree.DetermineScrollDirections
1 parent 003aa9b commit 3fbcf47

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Source/VirtualTrees.BaseTree.pas

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9320,9 +9320,7 @@ function TBaseVirtualTree.DetermineScrollDirections(X, Y: TDimension): TScrollDi
93209320
// yet elapsed.
93219321
if ((Int64(timeGetTime) - FDragScrollStart) < FAutoScrollDelay) then
93229322
Result := [];
9323-
end
9324-
else
9325-
OutputDebugString('Ooops');
9323+
end;
93269324
end;
93279325
end;
93289326
end;

0 commit comments

Comments
 (0)