add rmb menu entry to show item in Content Panel

This commit is contained in:
xxSeys1
2025-02-15 17:38:03 +01:00
parent abd0c7dece
commit 054d06f49e

View File

@@ -76,6 +76,15 @@ namespace FlaxEditor.Windows
});
cm.AddButton(Utilities.Constants.ShowInExplorer, () => FileSystem.ShowFileExplorer(System.IO.Path.GetDirectoryName(item.Path)));
if (!String.IsNullOrEmpty(Editor.Instance.Windows.ContentWin._itemsSearchBox.Text))
{
cm.AddButton("Show in Content Panel", () =>
{
Editor.Instance.Windows.ContentWin.ClearItemsSearch();
Editor.Instance.Windows.ContentWin.Select(item);
});
}
if (item.HasDefaultThumbnail == false)
{