Make split lines gray.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3187 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2000-11-21 10:50:27 +00:00
parent 45669dfcdb
commit 2b39007f56

View File

@ -712,6 +712,15 @@ sr_get_cell_borders (VirtualLocation virt_loc,
borders->bottom = CELL_BORDER_LINE_NONE;
borders->left = CELL_BORDER_LINE_NONE;
borders->right = CELL_BORDER_LINE_NONE;
return;
}
if (vcell->cellblock->cursor_type == CURSOR_TYPE_SPLIT)
{
borders->top = MIN (borders->top, CELL_BORDER_LINE_LIGHT);
borders->bottom = MIN (borders->bottom, CELL_BORDER_LINE_LIGHT);
borders->left = MIN (borders->left, CELL_BORDER_LINE_LIGHT);
borders->right = MIN (borders->right, CELL_BORDER_LINE_LIGHT);
}
}