[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 06:57:03 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 83767609427ba18bdc49ce6793304db075b3c612
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 5 00:04:11 2002 +0000

    	Fixed - 3091658: REGRESSION: cmd-left for back doesn't work in plain-text viewer
    
    	We now pass text field key events to the next responder which would be WebView in this case.
    
            * WebView.subproj/WebTextView.m:
            (-[WebTextView keyDown:]):
            (-[WebTextView keyUp:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2554 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 1bbe7ba..e935f69 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2002-11-04  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed - 3091658: REGRESSION: cmd-left for back doesn't work in plain-text viewer
+
+	We now pass text field key events to the next responder which would be WebView in this case.
+
+        * WebView.subproj/WebTextView.m:
+        (-[WebTextView keyDown:]):
+        (-[WebTextView keyUp:]):
+
 2002-11-04  Darin Adler  <darin at apple.com>
 
 	- fixed 3090257 -- "leak the world" using the Wallace and Gromit "console"
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 1bbe7ba..e935f69 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,13 @@
+2002-11-04  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed - 3091658: REGRESSION: cmd-left for back doesn't work in plain-text viewer
+
+	We now pass text field key events to the next responder which would be WebView in this case.
+
+        * WebView.subproj/WebTextView.m:
+        (-[WebTextView keyDown:]):
+        (-[WebTextView keyUp:]):
+
 2002-11-04  Darin Adler  <darin at apple.com>
 
 	- fixed 3090257 -- "leak the world" using the Wallace and Gromit "console"
diff --git a/WebKit/WebView.subproj/WebTextView.m b/WebKit/WebView.subproj/WebTextView.m
index 3acec26..73ec2a6 100644
--- a/WebKit/WebView.subproj/WebTextView.m
+++ b/WebKit/WebView.subproj/WebTextView.m
@@ -127,4 +127,14 @@
     return YES;
 }
 
+// Pass key events to next responder so command-arrows work.
+- (void)keyDown:(NSEvent *)event
+{
+    [[self nextResponder] keyDown:event];
+}
+
+- (void)keyUp:(NSEvent *)event
+{
+    [[self nextResponder] keyUp:event];
+}
 @end

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list