Fix width calculations.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3658 57a11ea4-9604-0410-9ed3-97b8803252fd
zzzoldreleases/1.6
Dave Peticolas 26 years ago
parent 31569b751f
commit e04666349e

@ -383,7 +383,8 @@ item_edit_event (GnomeCanvasItem *item, GdkEvent *event)
int
item_edit_get_toggle_offset (int row_height)
{
return row_height - 10 + 3;
/* sync with item_edit_update */
return row_height - (2 * (CELL_VPADDING + 1)) + 3;
}
static void

Loading…
Cancel
Save