diff --git a/Etabs_Adapter/CRUD/Read/_Read.cs b/Etabs_Adapter/CRUD/Read/_Read.cs index 5a516bce..7d8318f4 100644 --- a/Etabs_Adapter/CRUD/Read/_Read.cs +++ b/Etabs_Adapter/CRUD/Read/_Read.cs @@ -123,6 +123,18 @@ public Dictionary> SelectedElements() m_model.SelectObj.GetSelected(ref numItems, ref objectTypes, ref objectIds); + // Replace Panels' type numbers with Openings' type numbers + + for (int i=0; i> dict = objectTypes.Distinct().ToDictionary(x => x, x => new List()); for (int i = 0; i < numItems; i++) @@ -146,6 +158,8 @@ public Dictionary> SelectedElements() return null; case 7: // Link Object return typeof(RigidLink); + case 8: // Opening Object (not api-native) + return typeof(Opening); default: return null; }