Comment 11 for bug 460710

Revision history for this message
Fabien Tassin (fta) wrote :

This is with:
evolution 2.28.1-0ubuntu1
gtk2-engines-murrine 0.90.3-1ubuntu1
libcairo2 1.8.8-2ubuntu1

==9730== by 0x650A693: murrine_draw_progressbar_fill (murrine_draw.c:645)

static void
murrine_draw_progressbar_fill (cairo_t *cr,
                               const MurrineColors *colors,
                               const WidgetParameters *widget,
                               const ProgressBarParameters *progressbar,
                               int x, int y, int width, int height,
                               gint offset)
{

...
                        /* Draw strokes */
                        while (tile_pos <= width+x_step-2)
                        {
                                cairo_move_to (cr, stroke_width/2-x_step, 0);
                                cairo_line_to (cr, stroke_width-x_step, 0);
                                cairo_line_to (cr, stroke_width/2-x_step, height);
                                cairo_line_to (cr, -x_step, height); <=========== line 645

                                cairo_translate (cr, stroke_width, 0);
                                tile_pos += stroke_width;
                        }

...
}