Skip to content

Commit 5c707d7

Browse files
authored
Fix: Fixed issue where adaptive layout removed focus (#17473)
1 parent 7507098 commit 5c707d7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Files.App/Views/Layouts/BaseLayoutPage.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1239,6 +1239,9 @@ private void RefreshItem(SelectorItem container, object item, bool inRecycleQueu
12391239
await ParentShellPageInstance!.ShellViewModel.LoadExtendedItemPropertiesAsync(listedItem);
12401240
if (ParentShellPageInstance.ShellViewModel.EnabledGitProperties is not GitProperties.None && listedItem is IGitItem gitItem)
12411241
await ParentShellPageInstance.ShellViewModel.LoadGitPropertiesAsync(gitItem);
1242+
1243+
// Focus file list when items finish loading (#16530)
1244+
ItemManipulationModel.FocusFileList();
12421245
});
12431246
}
12441247
}

0 commit comments

Comments
 (0)