git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74873
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
wxRichTextBox::Draw(dc, context, range, selection, rect, descent, style);
{
wxRichTextBox::Draw(dc, context, range, selection, rect, descent, style);
- // Now draw the table outline, if any, to ensure there are no breaks caused by
- // different-coloured cell dividers overwriting the overall table border.
int colCount = GetColumnCount();
int rowCount = GetRowCount();
int col, row;
int colCount = GetColumnCount();
int rowCount = GetRowCount();
int col, row;
if (row == 0 || row == (rowCount-1) || col == 0 || col == (colCount-1))
{
wxRichTextCell* cell = GetCell(row, col);
if (row == 0 || row == (rowCount-1) || col == 0 || col == (colCount-1))
{
wxRichTextCell* cell = GetCell(row, col);
- if (cell && !cell->GetRange().IsOutside(range))
+ if (cell && cell->IsShown() && !cell->GetRange().IsOutside(range))
{
wxRect childRect(cell->GetPosition(), cell->GetCachedSize());
wxRichTextAttr attr(cell->GetAttributes());
{
wxRect childRect(cell->GetPosition(), cell->GetCachedSize());
wxRichTextAttr attr(cell->GetAttributes());