Skip to content

Commit

Permalink
Fix asset selection issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsPepperpot committed Oct 12, 2024
1 parent 0dbef3e commit 5a7ac20
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions IndustrialPark/MainForm/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -833,8 +833,11 @@ public void AddArchiveEditor(string filePath = null, Platform scoobyPlatform = P
SetupAssetVisibilityButtons();
closeAllEditorsToolStripMenuItem.Enabled = true;

if (show)
ae.Show();
ae.Show();

// Cannot select assets if the editor isn't shown first?
if (!show)
ae.Hide();
}

public void EditorUpdate()
Expand Down

0 comments on commit 5a7ac20

Please sign in to comment.