Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Files.App/Views/Layouts/BaseLayoutPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1239,6 +1239,9 @@ private void RefreshItem(SelectorItem container, object item, bool inRecycleQueu
await ParentShellPageInstance!.ShellViewModel.LoadExtendedItemPropertiesAsync(listedItem);
if (ParentShellPageInstance.ShellViewModel.EnabledGitProperties is not GitProperties.None && listedItem is IGitItem gitItem)
await ParentShellPageInstance.ShellViewModel.LoadGitPropertiesAsync(gitItem);

// Focus file list when items finish loading (#16530)
ItemManipulationModel.FocusFileList();
});
}
}
Expand Down
Loading