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

trey trey at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:24:43 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 412c46c960dbe8d85146605a2dd7e0848fb3bec7
Author: trey <trey at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Feb 17 18:54:30 2003 +0000

    	2943514 hide the cursor when using the arrow keys to scroll
    
            Reviewed by Darin
    
            * WebView.subproj/WebView.m:
            (-[WebView keyDown:]):  Hide that cursor.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3654 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index a0809b2..298580d 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2003-02-13  Trey Matteson  <trey at apple.com>
+
+	2943514 hide the cursor when using the arrow keys to scroll	
+
+        Reviewed by Darin
+
+        * WebView.subproj/WebView.m:
+        (-[WebView keyDown:]):  Hide that cursor.
+
 2003-02-16  Chris Blumenberg  <cblu at apple.com>
 
 	Added debug method that can be used inside of gdb to examine an image. Needed this many times.
diff --git a/WebKit/WebView.subproj/WebFrameView.m b/WebKit/WebView.subproj/WebFrameView.m
index 007a2c8..3155e58 100644
--- a/WebKit/WebView.subproj/WebFrameView.m
+++ b/WebKit/WebView.subproj/WebFrameView.m
@@ -280,6 +280,9 @@ enum {
     
     if (callSuper) {
         [super keyDown:event];
+    } else {
+        // if we did something useful, get the cursor out of the way
+        [NSCursor setHiddenUntilMouseMoves:YES];
     }
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list