Skip to content

Commit

Permalink
Fix: Fixed an issue when navigating the sidebar using the tab key (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
priadiliav authored Oct 1, 2024
1 parent 0debeee commit 239f4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Files.App/UserControls/Sidebar/SidebarItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private void SidebarItem_Loaded(object sender, RoutedEventArgs e)
border.DragOver += ItemBorder_DragOver;
border.Drop += ItemBorder_Drop;
border.AllowDrop = true;
border.IsTabStop = true;
border.IsTabStop = false;
}

if (GetTemplateChild("ChildrenPresenter") is ItemsRepeater repeater)
Expand Down

0 comments on commit 239f4bc

Please sign in to comment.