Skip to content

Commit

Permalink
The Images are normally assigned.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Kassebaum committed Sep 30, 2016
1 parent 95b6c28 commit 4bb8a3e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/VirtualExplorerTree.pas
Original file line number Diff line number Diff line change
Expand Up @@ -4282,7 +4282,9 @@ function TCustomVirtualExplorerTree.DoGetImageIndex(Node: PVirtualNode; Kind: TV
begin
if (Result = nil) and (Column = Header.MainColumn) then
begin
Result := SmallSysImages;
Result := Images;
if Result = nil then
Result := SmallSysImages;
if not NS.ThreadedIconLoaded and ThreadedImagesEnabled and not (csDesigning in ComponentState) then
begin
if (Kind = ikNormal) or (Kind = ikSelected) then
Expand Down

0 comments on commit 4bb8a3e

Please sign in to comment.