Bug 327488 - Allow dragging of page proxy icon to mail.app on 10.4. sr=pink

This commit is contained in:
stridey%gmail.com 2006-09-05 15:05:51 +00:00
parent 9b69cd5394
commit b649662708

View File

@ -72,9 +72,12 @@
[cursor setOnMouseEntered:YES];
}
- (unsigned int)draggingSourceOperationMaskForLocal:(BOOL)flag
- (unsigned int)draggingSourceOperationMaskForLocal:(BOOL)isLocal
{
return NSDragOperationGeneric;
if (isLocal)
return NSDragOperationGeneric;
else
return NSDragOperationCopy;
}
- (void)mouseDown:(NSEvent *)theEvent