Fix sub-context menu child popup still being open when parent context menu gets focused again by the user

This commit is contained in:
Wojtek Figat
2022-12-20 21:11:29 +01:00
parent 84f2e652e4
commit 0dd79fe10a
2 changed files with 27 additions and 0 deletions

View File

@@ -193,6 +193,8 @@ namespace FlaxEditor.Modules
/// <returns>Editor window or null if cannot find any window.</returns>
public EditorWindow FindEditor(ContentItem item)
{
if (item == null)
return null;
for (int i = 0; i < Windows.Count; i++)
{
var win = Windows[i];