Skip to content

Commit

Permalink
Merge pull request #22 from innogames/remove-warning
Browse files Browse the repository at this point in the history
Remove warning
  • Loading branch information
pak762 authored Nov 14, 2023
2 parents 2efe354 + e20864e commit 1a41e30
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion AssetRelationsViewer/Editor/AssetRelationsViewerWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,18 @@ public static void ShowWindowForAsset()
#endif
}

[MenuItem("Window/Asset Relations Viewer/Open")]
public static void Open()
{
ShowWindow();
}

private static void ShowWindowForAssetInternal()
{
AssetRelationsViewerWindow window = ShowWindow();
window.OnAssetSelectionChanged();
}

[MenuItem("Window/Asset Relations Viewer/Open")]
public static AssetRelationsViewerWindow ShowWindow()
{
AssetRelationsViewerWindow window = GetWindow<AssetRelationsViewerWindow>(false, OwnName);
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**1.5.2**
- Remove warning

**1.5.1**
- Increase serialize version of AssetToFileDependencyCache because of dependency order change
- Fixed possible StackOverflowException with very huge dependency trees and ShowAdditionalInformation option being enabled
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "com.innogames.asset-relations-viewer",
"displayName": "Asset Relations Viewer",
"description": "Editor UI for displaying dependencies between assets in a tree based view",
"version": "1.5.1",
"version": "1.5.2",
"unity": "2018.4",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit 1a41e30

Please sign in to comment.