[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:21:02 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 7b70f92ce610d4a6e14b9d3dfd3b8c57dc25cee8
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jan 22 19:57:11 2003 +0000

    	Fixed: 3153651 - text dragging does not work to Terminal
    
            Reviewed by trey.
    
            * WebView.subproj/WebHTMLView.m:
            (-[WebHTMLView draggingSourceOperationMaskForLocal:]): Terminal only accepts the drag if one of the operations is generic. Made the operation both generic and copy.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3400 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 17cca5e..2a0f8c5 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2003-01-22  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3153651 - text dragging does not work to Terminal
+
+        Reviewed by trey.
+
+        * WebView.subproj/WebHTMLView.m:
+        (-[WebHTMLView draggingSourceOperationMaskForLocal:]): Terminal only accepts the drag if one of the operations is generic. Made the operation both generic and copy.
+
 2003-01-21  Chris Blumenberg  <cblu at apple.com>
 
 	Added support for text dragging.
diff --git a/WebKit/WebView.subproj/WebHTMLView.m b/WebKit/WebView.subproj/WebHTMLView.m
index a24c13d..ae4aaa7 100644
--- a/WebKit/WebView.subproj/WebHTMLView.m
+++ b/WebKit/WebView.subproj/WebHTMLView.m
@@ -631,7 +631,8 @@
 
 - (unsigned)draggingSourceOperationMaskForLocal:(BOOL)isLocal
 {
-    return NSDragOperationCopy;
+    NSLog(@"draggingSourceOperationMaskForLocal");
+    return (NSDragOperationGeneric|NSDragOperationCopy);
 }
 
 - (void)draggedImage:(NSImage *)anImage endedAt:(NSPoint)aPoint operation:(NSDragOperation)operation

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list