No, you're not missing something. The code that decides whether the dropdown will fit underneath the box or not is getting confused by your monitor set up (I don't think any of the devs have similar for testing on...).
I've only got one - one of us probably has enough to be able to track it down though.
Wow, what a setup. I'm jealous.
It's just a minor inconvenience and I might be able to rearrange my displays to work around it a bit.
Thanks to you and the other developers for the great app. I couldn't do my cockpit set up without it. I've got Robert Maynard's Status Display running on the lower middle monitor behind 2 MFDs and EDDiscovery running on 3 of the monitors. I still need to do some configuration and I think the profiles feature will come in really handy. Here's how my cockpit set up looked a few months ago, it's a bit more polished now.
I see you have EDD in the panel format it came in.. remember you can adjust what each panel is showing (hover over the bar and use the panel selector), you can add new splits to each view (hover over the splitter and right click) and of course you can use compass/spanel overlays positioned over the Elite window itself.
And with profiles, you can trigger a completely different set of panels for supercruise, for landing, etc..
Do you still have those journals? Are they in the same place as your current ones?
Check you've not got 'Year' selected in the Time dropdown on your history control.
Try the Admin->Rescan all journal files option.
@brianna
I had a look. the code looks at the screen that the control is on and sizes it to that screen. its not clever enough (and it would take a lot to make it clever) to know that there is a screen beneath it that it could use.
int botscr = Screen.FromControl(this).WorkingArea.Height;
int botcontrol = location.Y + this.Height + _customdropdown.Height;
if (botcontrol < botscr)
_customdropdown.Location = new Point(location.X, location.Y + this.Height);
else
_customdropdown.Location = new Point(location.X, location.Y -_customdropdown.Height);
So it always sits on the screen of the bit you clicked on.
Making it understand screen geometry like you have would be a fair bit of code
Sorry.
Comments can be put here if i've misunderstood the issue
https://github.com/EDDiscovery/EDDiscovery/issues/2293
Is there a way to trim the ships list to remove those from prior-to a clear save? I pulled-down the ships/loadout window and saw all these ships listed that were from my commander prior to doing a clear-save last year (all the "@" ones in the image below for example).
Rename the commander, create a new commander with your commander's name, then move all of the events since the clear save to that new commander.
The ship list is determined at run time from your commander's journal history, and is not persistently stored anywhere.
How can one rename the commander in EDDiscovery? - I don't see the option to do that, the name is greyed-out in the edit settings panel.