mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
45669dfcdb
commit
2b39007f56
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user