On 02/10/13 08:15, Nightness wrote: > Instead of casting to IDisposable and calling Dispose... > > ((IDisposable) gr).Dispose (); > > Do this... > > using (Cairo.Graphics gr = CreateDrawable (area.GdkWindow)) > { > > } > > Fixed, thanks.