Stop heading using multiple lines
In the table view of aircraft, the heading was displayed as "330 (NW)" or similar. However, this cause the entry to scroll over into two lines of text, and reduces the number of planes that can be seen in the table at any one time. There probably should be a way to make the table view wider by scrolling it, but I can't see any way to do that. So for the moment I've commented out the extra (NW) bit.
This commit is contained in:
parent
2e43a9eb63
commit
a968f03c3a
|
@ -451,7 +451,7 @@ function refreshTableInfo() {
|
|||
html += '<td align="right">';
|
||||
if (tableplane.vTrack) {
|
||||
html += normalizeTrack(tableplane.track, tableplane.vTrack)[2];
|
||||
html += ' (' + normalizeTrack(tableplane.track, tableplane.vTrack)[1] + ')';
|
||||
// html += ' (' + normalizeTrack(tableplane.track, tableplane.vTrack)[1] + ')';
|
||||
} else {
|
||||
html += ' ';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue