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 f3161fe commit d7ed905Copy full SHA for d7ed905
src/Files.App/Views/Layouts/GridLayoutPage.xaml.cs
@@ -381,10 +381,8 @@ private async Task ReloadItemIconsAsync()
381
foreach (ListedItem listedItem in filesAndFolders)
382
{
383
listedItem.ItemPropertiesInitialized = false;
384
- if (FileList.ContainerFromItem(listedItem) is null)
385
- return;
386
-
387
- await ParentShellPageInstance.FilesystemViewModel.LoadExtendedItemPropertiesAsync(listedItem, currentIconSize);
+ if (FileList.ContainerFromItem(listedItem) is not null)
+ await ParentShellPageInstance.FilesystemViewModel.LoadExtendedItemPropertiesAsync(listedItem, currentIconSize);
388
}
389
390
if (ParentShellPageInstance.FilesystemViewModel.EnabledGitProperties is not GitProperties.None)
0 commit comments