Editor.Source_Files.Views.UndoListView.revertEvent C# (CSharp) Method

revertEvent() public method

public revertEvent ( ) : void
return void
        public void revertEvent()
        {
            if(undoList.Items.Count > 0)
                undoList.Invoke((MethodInvoker)(() => undoList.Items.RemoveAt(undoList.Items.Count - 1)));
        }