[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:33:38 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit e497e7aa13e4e18ed81d9872e9b2b7eac7eed101
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 21 23:31:49 2002 +0000

            * kwq/KWQNSViewExtras.m: (-[NSClipView _KWQ_scrollRectToVisible:inView:]):
    	Use bounds, not visibleRect. Seems to work better.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1894 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 76547b2..f95c109 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,8 @@
+2002-08-21  Darin Adler  <darin at apple.com>
+
+        * kwq/KWQNSViewExtras.m: (-[NSClipView _KWQ_scrollRectToVisible:inView:]):
+	Use bounds, not visibleRect. Seems to work better.
+
 2002-08-21  John Sullivan  <sullivan at apple.com>
 
 	- commented out (with FIXME 2935687) the code that was advertising in
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 76547b2..f95c109 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,8 @@
+2002-08-21  Darin Adler  <darin at apple.com>
+
+        * kwq/KWQNSViewExtras.m: (-[NSClipView _KWQ_scrollRectToVisible:inView:]):
+	Use bounds, not visibleRect. Seems to work better.
+
 2002-08-21  John Sullivan  <sullivan at apple.com>
 
 	- commented out (with FIXME 2935687) the code that was advertising in
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 76547b2..f95c109 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,8 @@
+2002-08-21  Darin Adler  <darin at apple.com>
+
+        * kwq/KWQNSViewExtras.m: (-[NSClipView _KWQ_scrollRectToVisible:inView:]):
+	Use bounds, not visibleRect. Seems to work better.
+
 2002-08-21  John Sullivan  <sullivan at apple.com>
 
 	- commented out (with FIXME 2935687) the code that was advertising in
diff --git a/WebCore/kwq/KWQNSViewExtras.m b/WebCore/kwq/KWQNSViewExtras.m
index 917e642..361e09c 100644
--- a/WebCore/kwq/KWQNSViewExtras.m
+++ b/WebCore/kwq/KWQNSViewExtras.m
@@ -49,7 +49,7 @@
 - (void)_KWQ_scrollRectToVisible:(NSRect)rect inView:(NSView *)view
 {
     NSRect exposeRect = [self convertRect:rect fromView:view];
-    NSRect visibleRect = [self visibleRect];
+    NSRect visibleRect = [self bounds];
     
     if (!NSContainsRect(visibleRect, exposeRect)) {
         // Make an expose rectangle that will end up centering the passed-in rectangle horizontally.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list