mirror of https://github.com/tuyoogame/YooAsset
Update ReorderableListView.cs
parent
e978164329
commit
f5947db44a
|
@ -60,16 +60,16 @@ namespace YooAsset.Editor
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 元素固定高度
|
/// 元素固定高度
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int ElementHeight
|
public float ElementHeight
|
||||||
{
|
{
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
_listView.itemHeight = value;
|
_listView.fixedItemHeight = value;
|
||||||
_listView.Rebuild();
|
_listView.Rebuild();
|
||||||
}
|
}
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return _listView.itemHeight;
|
return _listView.fixedItemHeight;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue