diff options
author | chai <chaifix@163.com> | 2018-07-10 15:03:26 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-07-10 15:03:26 +0800 |
commit | ef9b71324a36a67e5bfe380c164bc17dc4dc56bb (patch) | |
tree | 6c81451dab63624ec6a0a90ee6c8d32b9e06c215 /AssetBrowser.cs | |
parent | e24d18a50ae70ded57ba9ee9cd47a3ab43dbc027 (diff) |
Diffstat (limited to 'AssetBrowser.cs')
-rw-r--r-- | AssetBrowser.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/AssetBrowser.cs b/AssetBrowser.cs index e0741a9..d6d19bb 100644 --- a/AssetBrowser.cs +++ b/AssetBrowser.cs @@ -429,7 +429,7 @@ class AssetBrowser : EditorWindow #endregion #region thumbs - private bool thumbs = false; + private bool thumbs = true; #endregion #region filters @@ -495,12 +495,12 @@ class AssetBrowser : EditorWindow private Dictionary<Colum, int> ColumWidth = new Dictionary<Colum, int> { - {Colum.Name, 500}, + {Colum.Name, 400}, {Colum.Ref, 100}, {Colum.RevRef, 100}, {Colum.Type, 100}, {Colum.DiskSize, 100}, - {Colum.Path, 700}, + {Colum.Path, 800}, }; private Dictionary<Colum, int> ColumOffsetX = null; @@ -601,7 +601,7 @@ class AssetBrowser : EditorWindow ProcessTree(); EditorUtility.DisplayDialog("Load done", "Load done", "OK"); } - drawer.DrawCheckBox(new Rect(420, offsetY, 60, kLineHeight), "thumbs", thumbs, ref thumbs); + drawer.DrawCheckBox(new Rect(420, offsetY, 100, kLineHeight), "thumbnail", thumbs, ref thumbs); } private void OnFilters() |