//add new output item
        private void button3_Click(object sender, EventArgs e)
        {
            BlueprintEditorPopup editorPopup = new BlueprintEditorPopup(2);

            editorPopup.Show();
        }
        //Add new required item
        private void addNewItemRequired_Click(object sender, EventArgs e)
        {
            BlueprintEditorPopup editorPopup = new BlueprintEditorPopup(1);

            editorPopup.Show();
        }