internal void RenameOption(DropDownMultiSelectOption data, string arg0)
 {
     if (data.name != arg0)
     {
         OnOptionRenamed.Invoke(data.name, arg0);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Сloses the window and raises the rename event
 /// </summary>
 public override void OnEnter()
 {
     Close();
     RenameEvent?.Invoke(this, source[0], Destination.Value);
 }