diff options
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() |