Hi,
I've noticed that the vertical lines of wxTreeListCtrl's tree get truncated
when dealing with branches that contain > 300 entries. I've debugged into
the code and found that in wxTreeListMainWindow::PaintLevel, there are a
couple of wxDCClippers that define clipping regions that are 10.000 pixels
heigh, which turns out to be too small. When I replace all occurences of
10000 in wxTreeListMainWindow::PaintLevel with "INT_MAX", the tree gets
displayed correctly.
Could you please remove that bottleneck from the original version?
-Hartmut