Skip to content

Commit 6b7db72

Browse files
committed
Fix build error
1 parent 0662279 commit 6b7db72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Files/UserControls/SidebarControl.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,12 +299,12 @@ private void NavigationViewWSLItem_RightTapped(object sender, RightTappedRoutedE
299299

300300
private void OpenInNewTab_Click(object sender, RoutedEventArgs e)
301301
{
302-
NavigationHelpers.OpenPathInNewTab(App.RightClickedItem.Path);
302+
NavigationHelpers.OpenPathInNewTab(RightClickedItem.Path);
303303
}
304304

305305
private async void OpenInNewWindow_Click(object sender, RoutedEventArgs e)
306306
{
307-
await NavigationHelpers.OpenPathInNewWindowAsync(App.RightClickedItem.Path);
307+
await NavigationHelpers.OpenPathInNewWindowAsync(RightClickedItem.Path);
308308
}
309309

310310
private void NavigationViewItem_DragStarting(UIElement sender, DragStartingEventArgs args)

0 commit comments

Comments
 (0)