[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 08:43:08 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit fa6eac026050cfe25ca5fc6848ab02aa1b3d6d26
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jun 1 22:31:50 2004 +0000

    	Fixed: <rdar://problem/3661505>: (REGRESSION (Safari-140) can't drag standalone images more than once)
    
            Reviewed by john.
    
            * WebView.subproj/WebImageView.m:
            (-[WebImageView mouseDown:]): set ignoringMouseDraggedEvents to NO. This line of code was deleted somehow.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6738 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 89c9ae8..8c34595 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2004-06-01  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: <rdar://problem/3661505>: (REGRESSION (Safari-140) can't drag standalone images more than once)
+
+        Reviewed by john.
+
+        * WebView.subproj/WebImageView.m:
+        (-[WebImageView mouseDown:]): set ignoringMouseDraggedEvents to NO. This line of code was deleted somehow.
+
 2004-06-01  John Sullivan  <sullivan at apple.com>
 
         Reviewed by Darin.
diff --git a/WebKit/WebView.subproj/WebImageView.m b/WebKit/WebView.subproj/WebImageView.m
index ce3d330..d969caa 100644
--- a/WebKit/WebView.subproj/WebImageView.m
+++ b/WebKit/WebView.subproj/WebImageView.m
@@ -217,6 +217,7 @@
 
 - (void)mouseDown:(NSEvent *)event
 {
+    ignoringMouseDraggedEvents = NO;
     [mouseDownEvent release];
     mouseDownEvent = [event retain];
     [super mouseDown:event];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list