Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
d2dyno1 committed Mar 21, 2021
1 parent 0662279 commit 6b7db72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Files/UserControls/SidebarControl.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,12 +299,12 @@ private void NavigationViewWSLItem_RightTapped(object sender, RightTappedRoutedE

private void OpenInNewTab_Click(object sender, RoutedEventArgs e)
{
NavigationHelpers.OpenPathInNewTab(App.RightClickedItem.Path);
NavigationHelpers.OpenPathInNewTab(RightClickedItem.Path);
}

private async void OpenInNewWindow_Click(object sender, RoutedEventArgs e)
{
await NavigationHelpers.OpenPathInNewWindowAsync(App.RightClickedItem.Path);
await NavigationHelpers.OpenPathInNewWindowAsync(RightClickedItem.Path);
}

private void NavigationViewItem_DragStarting(UIElement sender, DragStartingEventArgs args)
Expand Down

0 comments on commit 6b7db72

Please sign in to comment.