Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crash when double clicking certificates in skill planer with alpha clone. #62

Open
ironhaven opened this issue Jun 9, 2017 · 1 comment

Comments

@ironhaven
Copy link

ironhaven commented Jun 9, 2017

In the skill planer there is a tab that shows certificates. There is a search bar on the side. When you click on a certificate on the search bar the center view shows you the levels of that certificate. You can either click on on the little plus or the certificate level name. I assume when you double click on a certificate level you add those skill to your skill plan.

When i double click on a certificate level that you can not complete with a alpha clone EVEMon crashes. The error i got is when training Navgation III. I also attached a picture of the window with helpful arrows.
A text file of the error log can be found on the bottom.

evemon error

EVEMon Error Log.txt

@wvdvegt
Copy link

wvdvegt commented Oct 12, 2017

Possible fix:

Change showInBrowserMenu_Click() at line in CertificateTreeDisplayControl.cs to

  private void showInBrowserMenu_Click(object sender, EventArgs e)
        {
            if (treeView.SelectedNode?.Tag is SkillLevel)
            {
                Skill skill = ((SkillLevel)treeView.SelectedNode?.Tag)?.Skill;

                // Open the skill browser
                PlanWindow.ShowPlanWindow(m_character, m_plan).ShowSkillInBrowser(skill);
            }
        }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants