FSpot.MainWindow.HandlePhotoViewDragMotion C# (CSharp) Method

HandlePhotoViewDragMotion() public method

public HandlePhotoViewDragMotion ( object sender, Gtk.DragMotionArgs args ) : void
sender object
args Gtk.DragMotionArgs
return void
		void HandlePhotoViewDragMotion (object sender, DragMotionArgs args)
		{
			//Widget source = Gtk.Drag.GetSourceWidget (args.Context);
			//Console.WriteLine ("Drag Motion {0}", source == null ? "null" : source.TypeName);

			Gdk.Drag.Status (args.Context, args.Context.SuggestedAction, args.Time);
			args.RetVal = true;
		}
MainWindow