seismick - 2022-09-03

The problem can be partly solved by modifying image_grid.cc:
Early in PlotImage::imageGrid(), we need to save the variable _nhdrs, which is
from the associated trace plot. Then around the middle of the file is this:
_user->_G.nhdwd = 64;

After this line, we need to change it for header plots, like so:
if(_user->getMode() == PlotHEADER) _user->_G.nhdwd = oldnumh;

Then the X readout in the bottom right corner will be correct.
However, there is another bug. The annotation at the top of the header plot is
wrong, because it also uses 64 as number of headers, and above fix does not
change that flaw. So need to find a way to patch the annotation code.