diff --git a/Scripts/Controls/ReorderableList/ReorderableList.cs b/Scripts/Controls/ReorderableList/ReorderableList.cs index 188cd86..c010421 100644 --- a/Scripts/Controls/ReorderableList/ReorderableList.cs +++ b/Scripts/Controls/ReorderableList/ReorderableList.cs @@ -28,6 +28,10 @@ namespace UnityEngine.UI.Extensions [Tooltip("Should dropped items displace a current item if the list is full?\n " + "Depending on the dropped items origin list, the displaced item may be added, dropped in space or deleted.")] public bool IsDisplacable = false; + + // This sets every item size (when being dragged over this list) to the current size of the first element of this list + [Tooltip("Should items being dragged over this list have their sizes equalized?")] + public bool EqualizeSizesOnDrag = false; public int maxItems = int.MaxValue; diff --git a/Scripts/Controls/ReorderableList/ReorderableListElement.cs b/Scripts/Controls/ReorderableList/ReorderableListElement.cs index 5db86bf..adcee13 100644 --- a/Scripts/Controls/ReorderableList/ReorderableListElement.cs +++ b/Scripts/Controls/ReorderableList/ReorderableListElement.cs @@ -505,7 +505,10 @@ namespace UnityEngine.UI.Extensions { Vector2 size = _draggingObjectOriginalSize; - if (_currentReorderableListRaycasted != null && _currentReorderableListRaycasted.IsDropable && _currentReorderableListRaycasted.Content.childCount > 0) + if (_currentReorderableListRaycasted != null + && _currentReorderableListRaycasted.IsDropable + && _currentReorderableListRaycasted.Content.childCount > 0 + && _currentReorderableListRaycasted.EqualizeSizesOnDrag) { var firstChild = _currentReorderableListRaycasted.Content.GetChild(0); if (firstChild != null)