fixed off by one error in clip patch from (#330824)
This commit is contained in:
@ -597,8 +597,8 @@ gdk_directfb_draw_drawable (GdkDrawable *drawable,
|
||||
GdkRegion *clip;
|
||||
GdkRectangle dest_rect = { xdest,
|
||||
ydest,
|
||||
xdest + width - 1,
|
||||
ydest + height - 1 };
|
||||
xdest + width ,
|
||||
ydest + height};
|
||||
|
||||
DFBRectangle rect = { xsrc, ysrc, width, height };
|
||||
gint i;
|
||||
|
||||
Reference in New Issue
Block a user