Sync full Cairo build with GTK Cairo plotters

(this was in the previous commit with a copy'n'paste error)

svn path=/trunk/netsurf/; revision=7022
This commit is contained in:
Chris Young 2009-04-01 17:40:09 +00:00
parent 853793eaa8
commit 16d7252eac
1 changed files with 2 additions and 2 deletions

View File

@ -182,8 +182,8 @@ bool ami_line(int x0, int y0, int x1, int y1, int width,
width = 1;
cairo_set_line_width(glob.cr, width);
cairo_move_to(current_cr, x0 + 0.5, y0 + 0.5);
cairo_line_to(current_cr, x1 + 0.5, y1 + 0.5);
cairo_move_to(glob.cr, x0 + 0.5, y0 + 0.5);
cairo_line_to(glob.cr, x1 + 0.5, y1 + 0.5);
cairo_stroke(glob.cr);
#endif
return true;