TShellTreeView: fix crash if ObjectTypes is changed at runtime. Issue #40766.

This commit is contained in:
Bart 2024-02-12 18:45:41 +01:00
parent 0f3f955e2b
commit 1b2d06b80d

View File

@ -674,9 +674,10 @@ begin
CurrPath := GetPath;
try
BeginUpdate;
Refresh(nil);
if Exists(CurrPath) then
SetPath(CurrPath);
//Refresh(nil);
//if Exists(CurrPath) then
// SetPath(CurrPath);
UpdateView;
finally
EndUpdate;
end;
@ -1393,7 +1394,12 @@ begin
if not (otNonFolders in FObjectTypes) then
Result := ((Attr and faDirectory) > 0)
else
Result := True;
begin
if not (otHidden in FObjectTypes) then
Result := ((Attr and faHidden) = 0)
else
Result := True;
end;
{$ifdef debug_shellctrls}
debugln(['TCustomShellTreeView.SetPath.Exists: Result = ',Result]);
{$endif}