Skip to content
Closed
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
4 changes: 4 additions & 0 deletions src/Files.App/UserControls/NavigationToolbar.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,10 @@ private async void BreadcrumbBar_ItemDropDownFlyoutOpening(object sender, Breadc
return;
}

// Don't open flyout for the last item in the breadcrumb path
if (e.Index == ViewModel.PathComponents.Count - 1)
return;

await ViewModel.SetPathBoxDropDownFlyoutAsync(e.Flyout, ViewModel.PathComponents[e.Index]);
}

Expand Down
Loading