oops bugs in line backend for imlb - fixed :)

SVN revision: 3116
This commit is contained in:
Carsten Haitzler 2000-08-14 06:53:30 +00:00
parent 28d61bace7
commit e7d5045576
1 changed files with 1 additions and 1 deletions

View File

@ -439,7 +439,7 @@ void __evas_imlib_line_draw(Display *disp, Window win,
if (!up->image)
up->image = imlib_create_image(up->w, up->h);
imlib_context_set_image(up->image);
imlib_image_draw_line(x1 - up->x, y1 - up->x, x2 - up->x, y2 - up->y, 0);
imlib_image_draw_line(x1 - up->x, y1 - up->y, x2 - up->x, y2 - up->y, 0);
}
}
}