From e99cb76e5103de3859b7fe8ac7bbeef14b8df4ae Mon Sep 17 00:00:00 2001 From: Simon Zheng Date: Wed, 1 Mar 2006 08:02:57 +0000 Subject: ** Fixes bug #331400 2006-03-01 Simon Zheng ** Fixes bug #331400 * e-cell-text.c: (ect_print_height): Table item height is decided by the max cell height in item. And cell-text is just one of cells. As done by ect_print(), to leave some margin for text, 2 for footer, 2 for header, actual print height should be 16 + 4. svn path=/trunk/; revision=31617 --- widgets/table/ChangeLog | 9 +++++++++ widgets/table/e-cell-text.c | 7 ++++++- 2 files changed, 15 insertions(+), 1 deletion(-) (limited to 'widgets/table') diff --git a/widgets/table/ChangeLog b/widgets/table/ChangeLog index 6bb2698e4e..3222b833a9 100644 --- a/widgets/table/ChangeLog +++ b/widgets/table/ChangeLog @@ -1,3 +1,12 @@ +2006-03-01 Simon Zheng + + ** Fixes bug #331400 + + * e-cell-text.c: (ect_print_height): Table item height is decided + by the max cell height in item. And cell-text is just one of cells. + As done by ect_print(), to leave some margin for text, 2 for footer, + 2 for header, actual print height should be 16 + 4. + 2006-02-24 Srinivasa Ragavan ** Fixes bug #332408 diff --git a/widgets/table/e-cell-text.c b/widgets/table/e-cell-text.c index db66f13550..a446a69522 100644 --- a/widgets/table/e-cell-text.c +++ b/widgets/table/e-cell-text.c @@ -1370,7 +1370,12 @@ ect_print_height (ECellView *ecell_view, GnomePrintContext *context, int model_col, int view_col, int row, double width) { - return 16; + /* + * Font size is 16 by default. To leave some margin for cell + * text area, 2 for footer, 2 for header, actual print height + * should be 16 + 4. +` */ + return 16 + 4; } static int -- cgit v1.2.3