1 | initial version |
You probably have a construct like this:
if (tree)
{
....
col_add_fstr(pinfo->cinfo, COL_INFO, "%s", "<text>");
....
}
This prevents the column info to be set, when relevant. Remove the condition and see what happens.