From 3c18c1f4b2054d4ffdf931c42af901af0448e3c1 Mon Sep 17 00:00:00 2001 From: Brett Kercher Date: Wed, 20 Jun 2018 13:47:55 -0500 Subject: [PATCH] Deselect current bundle on refresh. Fixes issue #52 --- Editor/AssetBundleManageTab.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Editor/AssetBundleManageTab.cs b/Editor/AssetBundleManageTab.cs index 07f8ddd..f3fc94c 100644 --- a/Editor/AssetBundleManageTab.cs +++ b/Editor/AssetBundleManageTab.cs @@ -99,6 +99,7 @@ internal void ForceReloadData() { UpdateSelectedBundles(new List()); SetSelectedItems(new List()); + m_BundleTree.SetSelection(new int[0]); AssetBundleModel.Model.ForceReloadData(m_BundleTree); m_Parent.Repaint(); }