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.
| 355 | 1034 | |
|---|---|---|
| 34 | 34 | initializeRows(m_tm); |
| 35 | 35 | postInitialize(); |
| 36 | 36 | } |
| 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 | ||
| 37 | 41 | int newrow = m_row_xform.get(row); |
| 38 | 42 | int newcol = col; |
| 39 | 43 | if(col != -1) { |
