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 f6d62ce commit d83ee09Copy full SHA for d83ee09
src/Files.App/Views/Layouts/ColumnsLayoutPage.xaml.cs
@@ -99,7 +99,8 @@ protected override void OnNavigatedTo(NavigationEventArgs eventArgs)
99
if (!string.IsNullOrEmpty(pathRoot))
100
{
101
var rootPathList = App.QuickAccessManager.Model.FavoriteItems.Select(NormalizePath)
102
- .Concat(CloudDrivesManager.Drives.Select(x => NormalizePath(x.Path))).ToList();
+ .Concat(CloudDrivesManager.Drives.Select(x => NormalizePath(x.Path))).ToList()
103
+ .Concat(App.LibraryManager.Libraries.Select(x => NormalizePath(x.Path))).ToList();
104
rootPathList.Add(NormalizePath(pathRoot));
105
106
while (!rootPathList.Contains(NormalizePath(path)))
0 commit comments