* BUG: Correctly resets the clip region offset after a DrawingArea draw 
  event.


git-svn-id: svn://localhost/gambas/trunk@6313 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2014-06-11 00:25:14 +00:00
parent a498bb8664
commit 4c7dfb0595

View file

@ -90,6 +90,7 @@ static void cb_expose(gDrawingArea *sender, GdkRegion *region, int dx, int dy)
PAINT_begin(THIS);
gdk_region_offset(region, -dx, -dy);
PAINT_clip_region(region);
gdk_region_offset(region, dx, dy);
GB.Raise(THIS, EVENT_draw, 0);