summaryrefslogtreecommitdiff
path: root/gtk/gtkcellrendererprogress.c
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2006-12-07 15:56:03 +0000
committerCarlos Garnacho <carlosg@src.gnome.org>2006-12-07 15:56:03 +0000
commit40750b5152ceb5dea950f96f5880e4e72404a81f (patch)
tree9909196c4613b15603b7cd3534855d7852f85799 /gtk/gtkcellrendererprogress.c
parent88d742d937c9402f9ce4d57a5b81ebb35d49c7d9 (diff)
downloadgtk+-40750b5152ceb5dea950f96f5880e4e72404a81f.tar.gz
do not use xthickness/ythickness, they aren't used any longer for drawing.
2006-12-07 Carlos Garnacho <carlosg@gnome.org> * gtk/gtkcellrendererprogress (compute_dimensions): do not use xthickness/ythickness, they aren't used any longer for drawing.
Diffstat (limited to 'gtk/gtkcellrendererprogress.c')
-rw-r--r--gtk/gtkcellrendererprogress.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkcellrendererprogress.c b/gtk/gtkcellrendererprogress.c
index 0e4a13d238..ce930e5225 100644
--- a/gtk/gtkcellrendererprogress.c
+++ b/gtk/gtkcellrendererprogress.c
@@ -269,11 +269,11 @@ compute_dimensions (GtkCellRenderer *cell,
pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
if (width)
- *width = logical_rect.width + cell->xpad * 2 + widget->style->xthickness * 2;
+ *width = logical_rect.width + cell->xpad * 2;
if (height)
- *height = logical_rect.height + cell->ypad * 2 + widget->style->ythickness * 2;
-
+ *height = logical_rect.height + cell->ypad * 2;
+
g_object_unref (layout);
}