If trying to retrieve a row at or above the row-length of the current tab, just return an empty string, as it's not probably going to get rendered anyway. I'm sadly confident this is due to a bug, but one that I can't fix right now.

by mrs, 15 Nov, 2009 04:00 AM
355 1034  
3434       initializeRows(m_tm);
3535       postInitialize();
3636     }
37 
38     //  If the row is later than the current max rows, then ignore it; it shouldn't be rendered anyway.  This may be a bug. :(
39     if(row >= m_row_xform.size()) return "";
40 
3741     int newrow = m_row_xform.get(row);
3842     int newcol = col;
3943     if(col != -1) {