How To Resize ItemType Editor Dropout?

That size is specified by the c_SelectedRowHeight constant within ItemTypeCollectionModal.
 
To add a bit more context (and since I updated and lost the changes and had to re-remember =) )

Updated ItemType.cs:
Line 19
Code:
// Added
[Tooltip("The UIItemID that provides a reference between Opsive ItemTypes and UIItemInfo.")]
[SerializeField] protected int m_UIItemID;

Line 39
Code:
// Added
public int UIItemID { get { return m_UIItemID; } set { m_UIItemID = value; } }

Updated ItemTypeManager.cs:
Line 669
Code:
// Specifies the height of the selected row.
private const float c_SelectedRowHeight = 210;
// Original
//private const float c_SelectedRowHeight = 190;

Line 941
Code:
// Added
var uiIDRect = categoryRect;
uiIDRect.y = capacityRect.yMax + 4;
itemType.UIItemID = InspectorUtility.DrawEditorWithoutSelectAll(() => InspectorUtility.ClampIntField(uiIDRect, "UIItemID", itemType.UIItemID, 59));

Line 978
Code:
// A new ItemType should be able to be added.
dropItemTypesRect.y = dropItemTypesRect.yMax + 24;
//Original
//dropItemTypesRect.y = dropItemTypesRect.yMax + 4;

1099
 
Top