From 86898816f454fc3f71b5c0e49f975c36c1e0c27a Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 9 Oct 2011 12:51:10 +0200 Subject: [PATCH] Bugfix on calculating column width in RptReport::new_from_gtktreeview. --- src/rptreport.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rptreport.c b/src/rptreport.c index b151d42..caf144d 100644 --- a/src/rptreport.c +++ b/src/rptreport.c @@ -550,7 +550,7 @@ RptReport guint x; GtkTreeViewColumn *col; - gint col_width; + gfloat col_width; const gchar *col_title; gchar *field_name; @@ -618,7 +618,7 @@ RptReport col = (GtkTreeViewColumn *)columns->data; col_title = g_strdup_printf ("\"%s\"", gtk_tree_view_column_get_title (col)); - col_width = rpt_common_points_to_value (RPT_UNIT_MILLIMETRE, gtk_tree_view_column_get_width (col) / 96 * 72); + col_width = rpt_common_points_to_value (RPT_UNIT_MILLIMETRE, gtk_tree_view_column_get_width (col) / 96.0 * 72.0); point = rpt_common_rptpoint_new_with_values (x, 15); if (columns->next == NULL && x < page_size->width) -- 2.49.0