diff options
author | Vibha Yadav <yvibha@novell.com> | 2010-11-15 18:10:15 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2010-11-16 17:43:16 +0800 |
commit | 9e833a704ce57e4f571d0da91e795e6ae7cc2469 (patch) | |
tree | fe10476e165e36698c7031673bcec3ae1a69c292 | |
parent | 3fb44759aefeb8ef4772bca76ebc9a24bea3350a (diff) | |
download | gsoc2013-evolution-9e833a704ce57e4f571d0da91e795e6ae7cc2469.tar.gz gsoc2013-evolution-9e833a704ce57e4f571d0da91e795e6ae7cc2469.tar.zst gsoc2013-evolution-9e833a704ce57e4f571d0da91e795e6ae7cc2469.zip |
Bug #633774 - Headers are gone in grouped view
-rw-r--r-- | libgnomecanvas/gnome-canvas-rect.c | 2 | ||||
-rw-r--r-- | widgets/table/e-table-group-container.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libgnomecanvas/gnome-canvas-rect.c b/libgnomecanvas/gnome-canvas-rect.c index aa1399b56e..1e44aa850e 100644 --- a/libgnomecanvas/gnome-canvas-rect.c +++ b/libgnomecanvas/gnome-canvas-rect.c @@ -171,7 +171,7 @@ gnome_canvas_rect_set_property (GObject *object, case PROP_FILL_COLOR: color_string = g_value_get_string (value); if (color_string != NULL) { - if (gdk_color_parse (color_string, &color)) { + if (!gdk_color_parse (color_string, &color)) { g_warning ( "Failed to parse color '%s'", color_string); diff --git a/widgets/table/e-table-group-container.c b/widgets/table/e-table-group-container.c index 39e7f0b812..12788ad6c4 100644 --- a/widgets/table/e-table-group-container.c +++ b/widgets/table/e-table-group-container.c @@ -1094,7 +1094,7 @@ etgc_reflow (GnomeCanvasItem *item, gint flags) e_canvas_item_move_absolute (GNOME_CANVAS_ITEM (child_node->text), GROUP_INDENT, - running_height - BUTTON_PADDING); + running_height - GROUP_INDENT - BUTTON_PADDING); e_canvas_item_move_absolute (GNOME_CANVAS_ITEM (child), GROUP_INDENT, |