Mission Planner - showFormations popup cut-off
Posted: Wed 15 Jan 2025 3:10 pm
Noticed a small issue with the pop up box that shows up when changing the formations on Chrome browser. Any formations beyond "C" are cut off in the box.

Appears to be on line 25515, function showFormations, in MP-Head.js. Something that doesn't quite work the same way from the Internet Explorer days, or perhaps 645 pixels isn't enough for new formations that came around?
Managed to get it readable adding this after:


Appears to be on line 25515, function showFormations, in MP-Head.js. Something that doesn't quite work the same way from the Internet Explorer days, or perhaps 645 pixels isn't enough for new formations that came around?
Managed to get it readable adding this after:
Code: Select all
formdiv.style.overflowY = 'auto'; // Added vertical scrolling for overflowing content
