浏览代码

Bugfix: Fix InspectableAABox constructor so it matches what's expected by InspectableField

BearishSun 6 年之前
父节点
当前提交
717b4e86d4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/EditorManaged/Windows/Inspector/InspectableAABox.cs

+ 1 - 1
Source/EditorManaged/Windows/Inspector/InspectableAABox.cs

@@ -30,7 +30,7 @@ namespace BansheeEditor
         /// <param name="property">Serializable property referencing the field whose contents to display.</param>
         /// <param name="property">Serializable property referencing the field whose contents to display.</param>
         /// <param name="style">Information that can be used for customizing field rendering and behaviour.</param>
         /// <param name="style">Information that can be used for customizing field rendering and behaviour.</param>
         public InspectableAABox(Inspector parent, string title, string path, int depth, InspectableFieldLayout layout,
         public InspectableAABox(Inspector parent, string title, string path, int depth, InspectableFieldLayout layout,
-            SerializableProperty property, InspectableFieldStyle style)
+            SerializableProperty property, InspectableFieldStyleInfo style)
             : base(parent, title, path, SerializableProperty.FieldType.Object, depth, layout, property)
             : base(parent, title, path, SerializableProperty.FieldType.Object, depth, layout, property)
         { }
         { }