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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:03:42 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9ac50ac78b80097c10e34a31f7f99ac3fd4228df
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 20 14:59:25 2003 +0000

            Reviewed by Dave and Ken.
    
            - fixed 3457066 -- REGRESSION (91-92): command-left-arrow causes a scroll to the left before going back
    
            * WebView.subproj/WebFrameView.m: (-[WebFrameView keyDown:]): Add an else so that we don't fall into the
            scrolling code when the command key is down for right and left arrow.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5224 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index b0deed4..7e1efd2 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2003-10-19  Darin Adler  <darin at apple.com>
+
+        Reviewed by Dave and Ken.
+
+        - fixed 3457066 -- REGRESSION (91-92): command-left-arrow causes a scroll to the left before going back
+
+        * WebView.subproj/WebFrameView.m: (-[WebFrameView keyDown:]): Add an else so that we don't fall into the
+        scrolling code when the command key is down for right and left arrow.
+
 2003-10-18  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed: <rdar://problem/3229530>: Dragging standalone image to desktop should save it, not re-download it
diff --git a/WebKit/WebView.subproj/WebFrameView.m b/WebKit/WebView.subproj/WebFrameView.m
index 8bf16ad..f513776 100644
--- a/WebKit/WebView.subproj/WebFrameView.m
+++ b/WebKit/WebView.subproj/WebFrameView.m
@@ -613,18 +613,18 @@ static NSMutableDictionary *viewTypes;
                         break;
                     }
                     [self _goBack];
-                } 
-                
-                // Now check scrolling related keys.
-                if (![self allowsScrolling]) {
-                    callSuper = YES;
-                    break;
-                }
-
-                if ([event modifierFlags] & NSAlternateKeyMask) {
-                    [self _pageLeft];
                 } else {
-                    [self _lineLeft];
+                    // Now check scrolling related keys.
+                    if (![self allowsScrolling]) {
+                        callSuper = YES;
+                        break;
+                    }
+
+                    if ([event modifierFlags] & NSAlternateKeyMask) {
+                        [self _pageLeft];
+                    } else {
+                        [self _lineLeft];
+                    }
                 }
                 callSuper = NO;
                 break;
@@ -636,18 +636,18 @@ static NSMutableDictionary *viewTypes;
                         break;
                     }
                     [self _goForward];
-                } 
-                
-                // Now check scrolling related keys.
-                if (![self allowsScrolling]) {
-                    callSuper = YES;
-                    break;
-                }
-
-                if ([event modifierFlags] & NSAlternateKeyMask) {
-                    [self _pageRight];
                 } else {
-                    [self _lineRight];
+                    // Now check scrolling related keys.
+                    if (![self allowsScrolling]) {
+                        callSuper = YES;
+                        break;
+                    }
+
+                    if ([event modifierFlags] & NSAlternateKeyMask) {
+                        [self _pageRight];
+                    } else {
+                        [self _lineRight];
+                    }
                 }
                 callSuper = NO;
                 break;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list