YourGod - 2017-02-16

A quick fix I came up with is to remove the event handler from the ComboBox.
In NodeComboBox.cs,

    protected override void DisposeEditor(Control editor)
    {
        if(editor is ComboBox)
        {
            (editor as ComboBox).DropDownClosed -= EditorDropDownClosed;
        }
    }