|
|
|
|
|
|
{ |
|
|
|
m_LabelValues = new List<string>(labelValues); |
|
|
|
var window = GetWindow<AddToConfigWindow>(); |
|
|
|
|
|
|
|
if (m_Status != null) |
|
|
|
{ |
|
|
|
m_Status.style.display = DisplayStyle.None; |
|
|
|
} |
|
|
|
|
|
|
|
if (labelValues.Count == 1) |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.titleContent = new GUIContent("Manage Label"); |
|
|
|
window.minSize = new Vector2(400, 390); |
|
|
|
window.maxSize = new Vector2(400, 390); |
|
|
|
window.maxSize = new Vector2(700, 390); |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
window.titleContent = new GUIContent("Manage Labels"); |
|
|
|
window.minSize = new Vector2(400, 370); |
|
|
|
window.maxSize = new Vector2(400, 1000); |
|
|
|
window.maxSize = new Vector2(700, 1000); |
|
|
|
} |
|
|
|
|
|
|
|
window.Init(); |
|
|
|