Update ReorderableListView.cs

This commit is contained in:
何冠峰
2025-02-18 19:34:34 +08:00
parent e978164329
commit f5947db44a

View File

@@ -60,16 +60,16 @@ namespace YooAsset.Editor
/// <summary>
/// 元素固定高度
/// </summary>
public int ElementHeight
public float ElementHeight
{
set
{
_listView.itemHeight = value;
_listView.fixedItemHeight = value;
_listView.Rebuild();
}
get
{
return _listView.itemHeight;
return _listView.fixedItemHeight;
}
}