Skip to content

Commit

Permalink
removed redundant selectedPath variable from App.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
IPdotSetAF committed May 9, 2024
1 parent 1172b13 commit 4e675e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugins/BulkExporterPlugin/BulkExportContextMenuItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class BulkExportContextMenuItem : DataExplorerContextMenuExtension

public override RelayCommand ContextItemClicked => new RelayCommand((o) =>
{
string selectedPath = App.SelectedPath;
string selectedPath = App.EditorWindow.DataExplorer.SelectedPath;
AssetCollection assets = Exporter.EnumerateAllAssets(selectedPath);
AssetCount assetCounts = assets.GetCounts();
Expand Down

0 comments on commit 4e675e2

Please sign in to comment.