Skip to content

Commit

Permalink
Two smaller bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pak762 committed Jun 21, 2021
1 parent dae4344 commit 9ac7e51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions AssetRelationsViewer/Editor/AssetRelationsViewerWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,7 @@ private void DisplayCaches()

GUI.contentColor = origColor;

EditorGUILayout.Space(10);
EditorGUILayout.EndScrollView();
EditorGUILayout.EndVertical();
}
Expand Down
3 changes: 2 additions & 1 deletion AssetRelationsViewer/Editor/InSceneTypeHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ public void OnSelectAsset(string id, string type)
{
if (type == HandledType && _hashToGameObject.ContainsKey(id))
{
Selection.activeObject = _hashToGameObject[id];
m_currentNode = _hashToGameObject[id];
Selection.activeObject = m_currentNode;
}
}

Expand Down

0 comments on commit 9ac7e51

Please sign in to comment.