[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 06:44:05 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit b21d9a5c8697dbd191c230195b213fa8135489bc
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 24 22:20:28 2002 +0000

    	- fixed 3059266 -- REGRESSION: clicking in web view when location field is
    	focused does not focus web view
    
            * WebView.subproj/WebHTMLView.m: (-[WebHTMLView needsPanelToBecomeKey]):
    	Must override this to return YES, because NSClipView makes it return NO
    	even though we accept the first responder.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2148 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 51b74b6..fcf7f8c 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2002-09-24  Darin Adler  <darin at apple.com>
+
+	- fixed 3059266 -- REGRESSION: clicking in web view when location field is
+	focused does not focus web view
+
+        * WebView.subproj/WebHTMLView.m: (-[WebHTMLView needsPanelToBecomeKey]):
+	Must override this to return YES, because NSClipView makes it return NO
+	even though we accept the first responder.
+
 2002-09-24  John Sullivan  <sullivan at apple.com>
 
 	- fixed 3056158 -- REGRESSION: Page up/down should scroll one 
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 51b74b6..fcf7f8c 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-09-24  Darin Adler  <darin at apple.com>
+
+	- fixed 3059266 -- REGRESSION: clicking in web view when location field is
+	focused does not focus web view
+
+        * WebView.subproj/WebHTMLView.m: (-[WebHTMLView needsPanelToBecomeKey]):
+	Must override this to return YES, because NSClipView makes it return NO
+	even though we accept the first responder.
+
 2002-09-24  John Sullivan  <sullivan at apple.com>
 
 	- fixed 3056158 -- REGRESSION: Page up/down should scroll one 
diff --git a/WebKit/WebView.subproj/WebHTMLView.m b/WebKit/WebView.subproj/WebHTMLView.m
index 82ed399..cef10ec 100644
--- a/WebKit/WebView.subproj/WebHTMLView.m
+++ b/WebKit/WebView.subproj/WebHTMLView.m
@@ -114,12 +114,16 @@
     [super dealloc];
 }
 
-
 - (BOOL)acceptsFirstResponder
 {
     return YES;
 }
 
+- (BOOL)needsPanelToBecomeKey
+{
+    return YES;
+}
+
 - (void)addMouseMovedObserver
 {
     [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(mouseMovedNotification:) name: NSMouseMovedNotification object: nil];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list