While the maximise button is non-functional, anyone who prefers NED full screen can change the following values in the NED.N7 file:
vCW = int(screenw()*0.75/unitW)
vCH = int(screenh()*0.75/unitH)
Just removing "*0.75" from each line does the trick, although in my case I had to change the height to:
vCH = int(screenh()*0.93/unitH)
....but this is probably due to a dodgy monitor I am currently using (I can't adjust the monitor settings)....
vCW = int(screenw()*0.75/unitW)
vCH = int(screenh()*0.75/unitH)
Just removing "*0.75" from each line does the trick, although in my case I had to change the height to:
vCH = int(screenh()*0.93/unitH)
....but this is probably due to a dodgy monitor I am currently using (I can't adjust the monitor settings)....