code style fix

This commit is contained in:
xxSeys1
2024-10-09 18:29:48 +02:00
parent 8b3f1ca019
commit 1fca41b31a

View File

@@ -86,10 +86,7 @@ namespace FlaxEditor.CustomEditors.Dedicated
// Edit selected prefab asset
var editPrefab = panel.Button("Edit Prefab");
editPrefab.Button.Clicked += () =>
{
Editor.Instance.Windows.ContentWin.Open(Editor.Instance.ContentDatabase.FindAsset(prefab.ID));
};
editPrefab.Button.Clicked += () => Editor.Instance.Windows.ContentWin.Open(Editor.Instance.ContentDatabase.FindAsset(prefab.ID));
// Viewing changes applied to this actor
var viewChanges = panel.Button("View Changes");