Thanks to Peter Williams for pointing out this bug

svn path=/trunk/gtk-sharp/; revision=49390
This commit is contained in:
Miguel de Icaza 2005-09-03 04:14:10 +00:00
parent 9af713e759
commit 86fcf4e74a

View File

@ -177,7 +177,7 @@ namespace Gtk {
public static void Invoke (object sender, EventArgs args, EventHandler d)
{
InvokeCB icb = new InvokeCB (d);
InvokeCB icb = new InvokeCB (d, sender, args);
GLib.Idle.Add (new GLib.IdleHandler (icb.Invoke));
}